* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7B2FF7;
    --secondary: #00D4FF;
    --dark: #0A0A1A;
    --surface: #1A1A2E;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    border-bottom: 1px solid rgba(123, 47, 247, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: left;
}

.logo-dym {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary);
}

.logo-craft {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.logo-line {
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin-top: 2px;
}

.logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), var(--surface), rgba(123, 47, 247, 0.1));
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo .logo-dym {
    font-size: 4.5rem;
}

.hero-logo .logo-craft {
    font-size: 4.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-highlight {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.stats-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #6A1FDE;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.3);
}

/* Section Common */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* Products Section */
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, var(--surface), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 47, 247, 0.2);
}

.product-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(0, 212, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-package {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-meta i {
    margin-right: 0.25rem;
}

.product-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-status.production {
    background: rgba(0, 212, 255, 0.2);
    color: var(--secondary);
}

.product-status.testing {
    background: rgba(255, 71, 87, 0.2);
    color: #FF4757;
}

.store-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.store-btn.android {
    background: #3DDC84;
    color: #000;
}

.store-btn.android:hover {
    background: #2CC06D;
    transform: translateY(-1px);
}

.store-btn.ios {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.store-btn.ios:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.store-btn.web {
    background: var(--primary);
    color: #fff;
}

.store-btn.web:hover {
    background: #6A1FDE;
    transform: translateY(-1px);
}

.store-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.store-btn.disabled:hover {
    transform: none;
}

/* About Section */
.about-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
}

.about-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.about-card ul {
    list-style: none;
}

.about-card ul li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.about-card ul li::before {
    content: '•';
    color: var(--primary);
    margin-right: 0.5rem;
}

.company-info {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 1.25rem;
    padding: 2rem;
}

.company-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.info-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

/* Contact Section */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    background: rgba(123, 47, 247, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.4;
}

.contact-form {
    background: linear-gradient(135deg, var(--surface), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 1.25rem;
    padding: 2rem;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(123, 47, 247, 0.3);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-dym,
.footer-logo .logo-craft {
    font-size: 1rem;
}

.footer-logo .logo-subtitle {
    font-size: 0.4rem;
}

.footer-address,
.footer-email {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.24);
    margin-top: 1.5rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .hero-logo .logo-dym,
    .hero-logo .logo-craft {
        font-size: 2.5rem;
    }
    
    .hero-subtitle,
    .hero-highlight {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        letter-spacing: 4px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
    }
}