/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --neon-lime: #00ff41;
    --neon-pink: #ff006e;
    --neon-yellow: #ffff00;
    --neon-cyan: #00ffff;
    --dark-indigo: #1a1a2e;
    --dark-blue: #0d1b2a;
    --text: #e0e0e0;
    --text-secondary: rgba(224,224,224,0.85);
    --text-muted: rgba(224,224,224,0.5);
    --terminal-green: #00ff41;
    --glitch-offset: 2px;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=DM+Sans:wght@400;500;700&display=swap');

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        repeating-linear-gradient(0deg, rgba(0,255,65,0.03) 0px, transparent 1px, transparent 2px, rgba(0,255,65,0.03) 3px),
        radial-gradient(ellipse at 20% 30%, rgba(255,0,110,0.15), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0,255,255,0.1), transparent 50%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* CRT Scanlines Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanline 8s linear infinite;
}

/* Grain texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.5;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-lime);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), 0 4px 0 rgba(0, 255, 65, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-text {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-lime);
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 30px rgba(0, 255, 65, 0.4);
    position: relative;
    letter-spacing: -0.05em;
}

.logo-text::before {
    content: '> ';
    color: var(--neon-pink);
    animation: blink 1.5s infinite;
}

.logo-text::after {
    content: '_';
    color: var(--neon-yellow);
    animation: blink 1s infinite;
    margin-left: 4px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Space Mono', monospace;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-link::before {
    content: '[';
    color: var(--neon-cyan);
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-link::after {
    content: ']';
    color: var(--neon-cyan);
    margin-left: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    color: var(--neon-lime);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
    border-color: var(--neon-lime);
    background: rgba(0, 255, 65, 0.05);
}

.nav-link:hover::before,
.nav-link:hover::after {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--neon-lime);
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neon-lime);
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    animation: glitch 0.3s infinite;
}

/* Language Switcher */
.language-switcher {
    background: transparent;
    border: 1px solid var(--neon-pink);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    min-height: 44px;
    min-width: 90px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.language-switcher:hover {
    border-color: var(--neon-yellow);
    background: rgba(255, 255, 0, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.language-switcher span {
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.language-switcher span.active {
    background: var(--neon-pink);
    color: var(--bg);
    text-shadow: none;
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
}

.language-switcher .lang-ru.active ~ .lang-en,
.language-switcher .lang-en.active ~ .lang-ru {
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    color: var(--text);
    background: var(--bg);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Matrix-style falling characters */
.gradient-orb {
    position: absolute;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--neon-lime);
    opacity: 0.3;
    animation: matrixFall 15s linear infinite;
}

.gradient-orb-1 {
    content: '01010101';
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-orb-1::before {
    content: '01010101 01010101 01010101\A01010101 01010101 01010101\A01010101 01010101 01010101\A01010101 01010101 01010101\A01010101 01010101 01010101';
    white-space: pre;
    line-height: 1.5;
}

.gradient-orb-2 {
    top: -20%;
    right: 15%;
    animation-delay: 5s;
    color: var(--neon-pink);
}

.gradient-orb-2::before {
    content: 'MESH MESH MESH\APARTY PARTY PARTY\AMESH MESH MESH\APARTY PARTY PARTY';
    white-space: pre;
    line-height: 1.5;
}

.gradient-orb-3 {
    top: -15%;
    left: 60%;
    animation-delay: 10s;
    color: var(--neon-cyan);
}

.gradient-orb-3::before {
    content: 'BLE BLE BLE\AMESH MESH MESH\ABLE BLE BLE\AMESH MESH MESH';
    white-space: pre;
    line-height: 1.5;
}

@keyframes matrixFall {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--neon-pink);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--neon-pink);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.hero-badge::before {
    content: '■ ';
    animation: blink 1.5s infinite;
}

.hero-badge:hover {
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
    animation: glitch 0.3s infinite;
}

.badge-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--neon-pink));
}

.hero-title {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--neon-lime);
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 30px rgba(0, 255, 65, 0.4),
        2px 2px 0 var(--neon-pink),
        -2px -2px 0 var(--neon-cyan);
    position: relative;
    letter-spacing: -0.02em;
}

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    border-left: 3px solid var(--neon-yellow);
    padding-left: 1rem;
    background: rgba(255, 255, 0, 0.03);
    padding: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-download {
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    padding: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.6),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    border-color: var(--neon-yellow);
    animation: glitch 0.3s infinite;
}

.btn-content {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--neon-lime);
    padding-top: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
    position: relative;
}

.stat-item::before {
    content: '>';
    position: absolute;
    left: -1rem;
    color: var(--neon-pink);
    animation: blink 1s infinite;
}

.stat-value {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow:
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.5);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn {
    font-family: 'Space Mono', monospace;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    background: transparent;
    border: 2px solid var(--neon-lime);
    color: var(--neon-lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.btn-primary {
    background: transparent;
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
    background: rgba(255, 255, 0, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 0.85rem;
}

.store-badge {
    height: 40px;
    width: auto;
}

.store-badge-large {
    height: 60px;
    width: auto;
}

/* Telegram Badge Styling */
.btn[href*="t.me"] {
    background: transparent !important;
    color: var(--neon-cyan) !important;
    border: 2px solid var(--neon-cyan);
    position: relative;
    min-width: 160px;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

.btn[href*="t.me"]:hover {
    background: rgba(0, 255, 255, 0.1) !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn[href*="t.me"]::before {
    content: "■";
    margin-right: 8px;
    font-size: 0.8em;
    color: var(--neon-cyan);
}

.btn-large[href*="t.me"] {
    min-width: 180px;
    padding: 1rem 2rem;
}

/* Phone Mockup - Terminal Style */
.phone-mockup {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: 380px;
    height: 600px;
    background: var(--bg);
    border: 3px solid var(--neon-lime);
    box-shadow:
        0 0 20px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    overflow: hidden;
    margin: 0 auto;
}

.phone-mockup::before {
    content: '[ MESH_PARTY.EXE ]';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: var(--neon-lime);
    color: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 10;
    text-align: center;
    border-bottom: 2px solid var(--bg);
}

.phone-mockup::after {
    content: '> READY_TO_PLAY █';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-lime);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    z-index: 10;
    border-top: 1px solid var(--neon-lime);
    animation: blink 1s infinite;
}

.phone-mockup:hover {
    box-shadow:
        0 0 40px rgba(0, 255, 65, 0.7),
        inset 0 0 40px rgba(0, 255, 65, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.8);
    animation: glitch 0.3s infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    padding: 3rem 0 2.5rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: none;
}

.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter:
        contrast(1.1)
        brightness(1.1)
        drop-shadow(0 0 20px rgba(0, 255, 65, 0.3));
    border: 2px solid rgba(0, 255, 65, 0.2);
}

.phone-screen:hover .app-screenshot {
    filter:
        contrast(1.2)
        brightness(1.2)
        drop-shadow(0 0 30px rgba(0, 255, 65, 0.5));
}

.mesh-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.6;
}

.mesh-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--neon-lime);
    border: 2px solid var(--neon-lime);
    box-shadow:
        0 0 15px var(--neon-lime),
        inset 0 0 10px rgba(0, 255, 65, 0.5);
    animation: pulseNode 2s ease-in-out infinite;
}

.mesh-node-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.mesh-node-2 {
    top: 30%;
    right: 28%;
    animation-delay: 0.5s;
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow:
        0 0 15px var(--neon-pink),
        inset 0 0 10px rgba(255, 0, 110, 0.5);
}

.mesh-node-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: 1s;
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 15px var(--neon-cyan),
        inset 0 0 10px rgba(0, 255, 255, 0.5);
}

.mesh-node-4 {
    bottom: 25%;
    right: 22%;
    animation-delay: 1.5s;
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
    box-shadow:
        0 0 15px var(--neon-yellow),
        inset 0 0 10px rgba(255, 255, 0, 0.5);
}

.mesh-signal {
    position: absolute;
    height: 1px;
    background: var(--neon-lime);
    box-shadow: 0 0 10px var(--neon-lime);
    animation: signalTravel 3s linear infinite;
}

.mesh-signal-1 {
    top: 22%;
    left: 25%;
    width: 30%;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.mesh-signal-2 {
    top: 32%;
    right: 28%;
    width: 25%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.mesh-signal-3 {
    bottom: 30%;
    left: 20%;
    width: 35%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transform: rotate(60deg);
    animation-delay: 2s;
}

.mesh-connection {
    position: absolute;
    height: 2px;
    background: var(--neon-yellow);
    opacity: 0.4;
    box-shadow: 0 0 8px var(--neon-yellow);
    animation: connectionPulse 4s ease-in-out infinite;
}

.mesh-connection-1 {
    top: 22%;
    left: 26%;
    width: 32%;
    transform: rotate(30deg);
    animation-delay: 0.5s;
}

.mesh-connection-2 {
    top: 32%;
    right: 28%;
    width: 28%;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

.mesh-connection-3 {
    bottom: 30%;
    left: 21%;
    width: 38%;
    transform: rotate(60deg);
    animation-delay: 2.5s;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.2;
        box-shadow: 0 0 5px currentColor;
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px currentColor;
    }
}

.mesh-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-lime);
    box-shadow: 0 0 8px var(--neon-lime);
    animation: particleMove 5s linear infinite;
}

.mesh-particle-1 {
    top: 21%;
    left: 25%;
    animation-delay: 0s;
}

.mesh-particle-2 {
    top: 31%;
    right: 28%;
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
    animation-delay: 1.5s;
}

.mesh-particle-3 {
    bottom: 32%;
    left: 20%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation-delay: 3s;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -50px);
        opacity: 0;
    }
}

@keyframes pulseNode {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3) rotate(90deg);
        opacity: 1;
    }
}

@keyframes signalTravel {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scaleX(1.5);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--neon-pink);
    border-bottom: 3px solid var(--neon-pink);
}

.features::before {
    content: '// FEATURES.SYS';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-pink);
    opacity: 0.3;
    letter-spacing: 0.1em;
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--neon-yellow);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--neon-yellow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features-badge .badge-icon {
    filter: drop-shadow(0 0 5px var(--neon-yellow));
}

.features-badge:hover {
    background: rgba(255, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow:
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: -0.02em;
}

.section-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    border-left: 2px solid var(--neon-cyan);
    padding-left: 1rem;
    background: rgba(0, 255, 255, 0.03);
    padding: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--neon-lime);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.feature-card::before {
    content: 'GAME_MODULE.EXE';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: var(--neon-lime);
    color: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 10;
    border-bottom: 2px solid var(--bg);
}

.feature-card:nth-child(2)::before {
    content: 'GUESS_MODULE.EXE';
    background: var(--neon-pink);
}

.feature-card:nth-child(2) {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.feature-card:nth-child(3)::before {
    content: 'NETWORK_MODULE.EXE';
    background: var(--neon-cyan);
}

.feature-card:nth-child(3) {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5);
    animation: glitch 0.3s infinite;
}

.feature-card:nth-child(2):hover {
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.5);
}

.feature-card:nth-child(3):hover {
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem 0 1.5rem;
}

.feature-icon {
    position: relative;
}

.icon-bg {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--neon-lime);
    transition: all 0.3s ease;
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--neon-lime));
}

.feature-card:nth-child(2) .icon-bg {
    background: rgba(255, 0, 110, 0.1);
    border-color: var(--neon-pink);
}

.feature-card:nth-child(2) .feature-icon-img {
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

.feature-card:nth-child(3) .icon-bg {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
}

.feature-card:nth-child(3) .feature-icon-img {
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.feature-card:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}

.feature-number {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-lime);
    opacity: 0.4;
}

.feature-card:nth-child(2) .feature-number {
    color: var(--neon-pink);
}

.feature-card:nth-child(3) .feature-number {
    color: var(--neon-cyan);
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem 2rem 1.5rem;
}

.feature-content h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-lime);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.feature-card:nth-child(2) .feature-content h3 {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.feature-card:nth-child(3) .feature-content h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.feature-content p {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--neon-lime);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.feature-card:nth-child(2) .feature-highlight {
    border-color: var(--neon-pink);
}

.feature-card:nth-child(3) .feature-highlight {
    border-color: var(--neon-cyan);
}

.feature-card:hover .feature-highlight {
    box-shadow: 0 0 15px currentColor;
}

.highlight-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--neon-lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-card:nth-child(2) .highlight-text {
    color: var(--neon-pink);
}

.feature-card:nth-child(3) .highlight-text {
    color: var(--neon-cyan);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--bg);
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--neon-yellow);
    border-bottom: 3px solid var(--neon-yellow);
}

.download::before {
    content: '// DOWNLOAD.SYS';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-yellow);
    opacity: 0.3;
    letter-spacing: 0.1em;
    pointer-events: none;
}

.download-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.gradient-orb-4,
.gradient-orb-5 {
    display: none;
}

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.download-header {
    margin-bottom: 4rem;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--neon-pink);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--neon-pink);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.download-badge .badge-icon {
    filter: drop-shadow(0 0 5px var(--neon-pink));
}

.download-badge:hover {
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.download-content h2 {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-yellow);
    text-shadow:
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.5);
    letter-spacing: -0.02em;
}

.download-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--neon-lime);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.download-card:first-child::before {
    content: 'ANDROID.APK';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: var(--neon-lime);
    color: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 10;
    border-bottom: 2px solid var(--bg);
}

.download-card:last-child::before {
    content: 'IOS.IPA';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: var(--neon-cyan);
    color: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 10;
    border-bottom: 2px solid var(--bg);
}

.download-card:last-child {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5);
    animation: glitch 0.3s infinite;
}

.download-card:last-child:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}

.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    padding-top: 3rem;
}

.download-card .icon-bg {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--neon-lime);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.download-card:last-child .icon-bg {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
}

.download-card:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}

.download-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--neon-lime);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.download-card:last-child h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.download-card p {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    padding: 0 2rem 2rem 2rem;
}

.download-btn {
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    padding: 0.25rem;
}

.download-btn:hover {
    transform: scale(1.03);
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
}

.store-badge {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--neon-yellow);
    padding-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--neon-yellow);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 0, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
    transform: translateY(-2px);
}

.feature-item .feature-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--neon-yellow));
}

.feature-item span {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Glitch Animation */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* Footer */
.footer {
    background: var(--bg);
    color: var(--text);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--neon-lime);
}

.footer::before {
    content: '// FOOTER.SYS';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-lime);
    opacity: 0.3;
    letter-spacing: 0.1em;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--neon-lime));
    transition: all 0.3s ease;
    border: 2px solid var(--neon-lime);
    padding: 5px;
}

.logo-icon-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px var(--neon-lime));
    box-shadow: 0 0 20px var(--neon-lime);
}

.footer-logo h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-lime);
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.footer-brand p {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: none; /* Hidden since no social links are available */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.link-group h4::before {
    content: '> ';
    color: var(--neon-pink);
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
}

.link-group a {
    font-family: 'DM Sans', sans-serif;
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.link-group a::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 0.6rem;
}

.link-group a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    padding-left: 1.5rem;
}

.link-group a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--neon-lime);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: 'Space Mono', monospace;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
    letter-spacing: 0.05em;
}

.footer-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-stats span {
    font-family: 'Space Mono', monospace;
    background: transparent;
    border: 1px solid var(--neon-pink);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Additional Animations and Effects */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for interactive elements */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Glow effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), var(--accent-secondary), var(--accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.7;
    animation: pulse 2s infinite;
}

/* Text gradient animation */
.gradient-text {
    background: linear-gradient(45deg, var(--accent), var(--accent-secondary), var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Loading animation for images */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border: 2px solid var(--neon-lime);
        border-top: none;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Store badges */
    .store-badge {
        height: 50px;
    }

    .store-badge-large {
        height: 60px;
    }

    .phone-mockup {
        width: 320px;
        height: 520px;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
        font-size: 0.7rem;
        padding: 0.6rem 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Smaller store badges for very small screens */
    .store-badge {
        height: 45px;
    }

    .store-badge-large {
        height: 55px;
    }

    .features {
        padding: 60px 0;
    }

    .features::before,
    .download::before,
    .faq::before {
        font-size: 0.65rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card-header {
        padding: 2rem 1rem 0 1rem;
    }

    .feature-content {
        padding: 0 1rem 1.5rem 1rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .download {
        padding: 60px 0;
    }

    .download-content h2 {
        font-size: 1.6rem;
    }

    .download-content p {
        font-size: 0.95rem;
    }

    .phone-mockup {
        width: 280px;
        height: 460px;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
    }

    /* Language switcher adjustments */
    .language-switcher {
        font-size: 0.7rem;
        min-width: 80px;
        padding: 0.4rem 0.6rem;
    }

    /* Logo size adjustment */
    .logo-text {
        font-size: 1.4rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    border-top: 3px solid var(--neon-cyan);
}

.faq::before {
    content: '// FAQ.SYS';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    opacity: 0.3;
    letter-spacing: 0.1em;
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    padding: 0.5rem 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faq-badge .badge-icon {
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--neon-cyan);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.faq-item:hover {
    border-color: var(--neon-lime);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.faq-item.active {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.05);
}

.faq-question h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin: 0;
    flex: 1;
    letter-spacing: 0.02em;
}

.faq-icon {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    color: var(--neon-yellow);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--neon-lime);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 255, 255, 0.03);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: var(--neon-cyan);
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    padding: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for interactive elements */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-2px);
}

/* Gradient animation */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 1rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }
}