/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gaming Color Palette - Dark & Neon */
    --primary-cyan: #00d9ff;
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --neon-green: #10ff00;
    --neon-blue: #0ff;
    --neon-orange: #ff6b35;
    --gold: #ffd700;
    --dark-bg: #0a0e27;
    --dark-bg-secondary: #151b3d;
    --dark-card: #1a1f3a;
    --dark-card-hover: #242949;
    --light-bg: #0f1533;
    --text-dark: #e2e8f0;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-neon: #00d9ff;
    --border-glow: rgba(0, 217, 255, 0.3);
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: scroll-position;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: bgShift 20s ease infinite;
    will-change: opacity;
    transform: translateZ(0); /* GPU acceleration */
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Custom scrollbar - Optimized */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 6px;
    will-change: background;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-blue), var(--primary-pink));
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Particle canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    will-change: contents;
    transform: translateZ(0); /* GPU acceleration */
}

/* Glow effect utility */
.glow {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5),
                0 0 40px rgba(0, 217, 255, 0.3),
                0 0 60px rgba(0, 217, 255, 0.2);
}

.glow-purple {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5),
                0 0 40px rgba(139, 92, 246, 0.3);
}

.glow-pink {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5),
                0 0 40px rgba(236, 72, 153, 0.3);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    will-change: box-shadow;
    transform: translateZ(0); /* GPU acceleration */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    position: relative;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); }
}

.logo .tagline {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-cyan);
    opacity: 0.9;
    letter-spacing: 4px;
    margin-top: -5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-cyan);
    background: rgba(0, 217, 255, 0.05);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.btn-download-nav {
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan)) !important;
    color: var(--dark-bg) !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(16, 255, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-download-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-download-nav:hover::before {
    left: 100%;
}

.btn-download-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(16, 255, 0, 0.6),
                0 5px 20px rgba(0, 217, 255, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 50%, var(--dark-bg) 100%);
    overflow: hidden;
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating geometric shapes */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><polygon points="100,20 180,180 20,180" fill="none" stroke="rgba(0,217,255,0.2)" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(139,92,246,0.2)" stroke-width="2"/></svg>');
    opacity: 0.3;
    animation: floatShapes 30s infinite linear;
}

@keyframes floatShapes {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: var(--spacing-md);
    max-width: 1200px;
    will-change: transform, opacity;
    transform: translateZ(0); /* GPU acceleration */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
    animation: fadeInUp 1s ease, heroGlow 4s ease-in-out infinite;
    letter-spacing: 2px;
    line-height: 1.2;
}

@keyframes heroGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.8))
                drop-shadow(0 0 70px rgba(236, 72, 153, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.6s backwards;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.badge {
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s linear infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--primary-cyan);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.mouse::before {
    content: '';
    width: 6px;
    height: 12px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple));
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

@keyframes scroll {
    0% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0);
    }
    100% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan));
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(16, 255, 0, 0.4),
                0 10px 25px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(16, 255, 0, 0.6),
                0 15px 35px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 3px solid var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 3px solid var(--primary-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
}

/* ===================================
   QUICK INFO SECTION
   =================================== */

.quick-info {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.info-card {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 217, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(0, 217, 255, 0.1), 
        transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.info-card:hover::before {
    animation: cardShine 1.5s ease;
}

@keyframes cardShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.info-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4),
                0 20px 50px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-cyan);
    background: rgba(26, 31, 58, 0.9);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 25px rgba(16, 255, 0, 0.8));
}

.info-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
}

.divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-cyan), 
        var(--primary-purple), 
        var(--primary-pink),
        var(--gold));
    margin: var(--spacing-sm) auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-cyan);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--primary-cyan);
}

.divider::before {
    left: -15px;
}

.divider::after {
    right: -15px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 900px;
    margin: var(--spacing-sm) auto 0;
    line-height: 1.8;
}

/* ===================================
   ABOUT PREVIEW SECTION
   =================================== */

.about-preview {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        var(--dark-bg-secondary) 0%, 
        var(--dark-bg) 50%,
        var(--dark-bg-secondary) 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.about-text .btn {
    margin-top: var(--spacing-md);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(0, 217, 255, 0.3) 50%,
        rgba(236, 72, 153, 0.3) 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3),
                0 20px 60px rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(0, 217, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%);
    animation: imageScan 3s linear infinite;
}

@keyframes imageScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
}

/* ===================================
   FEATURES HIGHLIGHT
   =================================== */

.features-highlight {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    border-left: 5px solid var(--neon-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(16, 255, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 255, 0, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 0 40px rgba(16, 255, 0, 0.4),
                0 10px 40px rgba(0, 217, 255, 0.2);
    border-left-width: 8px;
    border-color: rgba(16, 255, 0, 0.6);
}

.feature-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    opacity: 0.6;
    transform: scale(1.2);
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.text-center {
    text-align: center;
}

/* ===================================
   DOWNLOAD CTA SECTION
   =================================== */

.download-cta {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 50%, var(--dark-bg-secondary) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(0, 217, 255, 0.03) 50px,
        rgba(0, 217, 255, 0.03) 100px
    );
    animation: ctaSlide 20s linear infinite;
}

@keyframes ctaSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.download-info {
    margin-top: var(--spacing-sm);
    color: var(--primary-cyan);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* ===================================
   STORY SECTION
   =================================== */

.story-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-block {
    margin-bottom: var(--spacing-lg);
    background: rgba(26, 31, 58, 0.4);
    padding: var(--spacing-md);
    border-radius: 20px;
    border-left: 4px solid var(--primary-cyan);
}

.story-block h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-block h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--primary-cyan);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.story-block p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.highlight-block {
    background: 
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: var(--spacing-md);
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent);
    animation: highlightSweep 4s linear infinite;
}

@keyframes highlightSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highlight-block h3 {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.highlight-block p {
    color: var(--text-white);
}

.icon-large {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.8));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.problem-statement {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 25px;
    margin-top: var(--spacing-lg);
    border: 2px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
}

.problem-list {
    margin-top: var(--spacing-md);
}

.problem-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(10, 14, 39, 0.6);
    border-radius: 15px;
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
    border: 2px solid rgba(236, 72, 153, 0.2);
}

.problem-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    border-left-width: 8px;
}

.problem-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
}

.problem-item p {
    margin: 0;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background: 
        radial-gradient(ellipse at center, rgba(16, 255, 0, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(16, 255, 0, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    color: var(--text-white);
    border: 2px solid rgba(16, 255, 0, 0.3);
    box-shadow: 0 0 40px rgba(16, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent);
    animation: ctaSweep 3s linear infinite;
}

@keyframes ctaSweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-section h2 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(16, 255, 0, 0.5);
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* ===================================
   OBJECTIVES SECTION
   =================================== */

.objectives-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
}

.objectives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.objective-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--primary-cyan);
    border: 2px solid rgba(0, 217, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 217, 255, 0.1),
        transparent);
    transition: left 0.6s ease;
}

.objective-card:hover::before {
    left: 100%;
}

.objective-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4),
                0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-cyan);
}

.objective-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
    transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 25px rgba(16, 255, 0, 0.8));
}

.objective-number {
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 0 10px rgba(16, 255, 0, 0.5);
}

.objective-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.objective-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.feature-tag {
    background: rgba(0, 217, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-cyan);
    font-weight: 700;
    border: 1px solid rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

/* ===================================
   KEY FEATURES SECTION
   =================================== */

.key-features-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        var(--dark-bg-secondary) 0%, 
        var(--dark-bg) 50%,
        var(--dark-bg-secondary) 100%);
    position: relative;
}

.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-detail-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-detail-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple), var(--primary-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-detail-card:hover::after {
    opacity: 1;
}

.feature-detail-card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4),
                0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-large {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    transition: all 0.4s ease;
}

.feature-detail-card:hover .feature-icon-large {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.8));
}

.feature-detail-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.feature-detail-card:hover h3 {
    color: var(--primary-cyan);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.feature-detail-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   TECHNICAL FEATURES
   =================================== */

.technical-features {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    color: var(--text-white);
}

.technical-features .section-header h2 {
    color: var(--accent-gold);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.tech-item {
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
}

.tech-item:hover::before {
    width: 200%;
    height: 200%;
}

.tech-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
    transform: translateY(-5px);
}

.tech-item h4 {
    color: var(--neon-green);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(16, 255, 0, 0.5);
    position: relative;
    z-index: 2;
}

.tech-item p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-cyan);
    position: relative;
    z-index: 2;
}

/* ===================================
   DOWNLOAD PAGE STYLES
   =================================== */

.download-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(16, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.download-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-md);
}

.download-card-featured {
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    border-radius: 25px;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 217, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.download-card-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent,
        rgba(0, 217, 255, 0.05),
        transparent);
    animation: downloadCardGlow 4s linear infinite;
}

@keyframes downloadCardGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-header {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
}

.game-icon {
    font-size: 4rem;
}

.download-header h2 {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.version {
    color: var(--neon-green);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(16, 255, 0, 0.5);
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-action {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.btn-download-main {
    width: 100%;
    max-width: 400px;
    font-size: 1.3rem;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: 0 auto;
}

.download-icon {
    font-size: 1.5rem;
    animation: bounce-download 2s infinite;
}

@keyframes bounce-download {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.download-notice {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-light);
}

.download-features-list {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: 10px;
}

.download-features-list h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.download-features-list ul {
    list-style: none;
}

.download-features-list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
    line-height: 1.8;
}

.sidebar-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.requirements-list,
.help-list {
    list-style: none;
}

.requirement-item {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-item strong {
    color: var(--primary-blue);
}

.installation-steps {
    padding-left: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.8;
}

.installation-steps li {
    margin-bottom: var(--spacing-xs);
}

.help-list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
}

.help-list li::before {
    content: '✓ ';
    color: var(--secondary-green);
    font-weight: 700;
}

/* ===================================
   INSTALLATION DETAILS
   =================================== */

.installation-details {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
}

.installation-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(16, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.instruction-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--neon-green);
    border: 2px solid rgba(16, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.instruction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(16, 255, 0, 0.1),
        transparent);
    transition: left 0.6s ease;
}

.instruction-card:hover::before {
    left: 100%;
}

.instruction-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 35px rgba(16, 255, 0, 0.4),
                0 15px 40px rgba(0, 0, 0, 0.3);
    border-top-width: 8px;
}

.instruction-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    box-shadow: 0 0 25px rgba(16, 255, 0, 0.6);
    transition: all 0.3s ease;
}

.instruction-card:hover .instruction-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 35px rgba(16, 255, 0, 0.8);
}

.instruction-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-cyan);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instruction-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        var(--dark-bg-secondary) 0%, 
        var(--dark-bg) 50%,
        var(--dark-bg-secondary) 100%);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(236, 72, 153, 0.1);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.faq-item:hover::before {
    color: rgba(236, 72, 153, 0.2);
    transform: rotate(15deg) scale(1.2);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.4),
                0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-pink);
}

.faq-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-pink);
    margin-bottom: var(--spacing-sm);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.alt-download-cta {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.cta-box {
    background: 
        radial-gradient(ellipse at center, rgba(16, 255, 0, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 30px;
    text-align: center;
    color: var(--text-white);
    border: 3px solid rgba(16, 255, 0, 0.4);
    box-shadow: 0 0 50px rgba(16, 255, 0, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent);
    animation: ctaBoxSpin 5s linear infinite;
}

@keyframes ctaBoxSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-box h2 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(16, 255, 0, 0.8);
    position: relative;
    z-index: 2;
}

.cta-box p {
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* ===================================
   MODAL
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    overflow-y: auto;
    overflow-x: hidden;
    /* Center the modal content using flexbox */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(21, 27, 61, 0.95) 100%);
    backdrop-filter: blur(20px);
    margin: auto;
    padding: 2rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    text-align: center;
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.4),
                0 30px 80px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
}

.modal-close:hover {
    color: var(--primary-pink);
    background: rgba(236, 72, 153, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 30px rgba(16, 255, 0, 0.8));
    animation: modalIconBounce 1s ease-in-out infinite;
}

@keyframes modalIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.modal-content h2 {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    font-size: 1.05rem;
}

.modal-info {
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm);
    border-radius: 15px;
    margin: var(--spacing-sm) 0;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.modal-info p {
    margin: var(--spacing-xs) 0;
    color: var(--text-white);
}

.modal-info strong {
    color: var(--primary-cyan);
}

.modal-reminder {
    font-size: 1rem;
    color: var(--neon-green) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(16, 255, 0, 0.6);
    animation: reminderPulse 2s ease-in-out infinite;
}

@keyframes reminderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Modal Responsive Styling */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
        border-radius: 20px;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .modal-content h2 {
        font-size: 1.4rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
    }
    
    .modal-close {
        font-size: 1.8rem;
        right: 10px;
        top: 10px;
        width: 35px;
        height: 35px;
    }
    
    .modal-info {
        padding: 0.8rem;
    }
    
    .modal-reminder {
        font-size: 0.85rem !important;
    }
}

/* Smooth scrolling for modal */
.modal {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    position: relative;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-cyan),
        var(--primary-purple),
        var(--primary-pink),
        transparent);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

.footer-section ul li a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   FEEDBACK PAGE STYLES
   =================================== */

.feedback-stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
}

.stat-card:hover::before {
    width: 300%;
    height: 300%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.stat-label {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Rating Distribution */
.rating-distribution-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        var(--dark-bg-secondary) 0%, 
        var(--dark-bg) 50%,
        var(--dark-bg-secondary) 100%);
}

.rating-bars {
    max-width: 800px;
    margin: 0 auto;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(26, 31, 58, 0.4);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.rating-bar-item:hover {
    background: rgba(26, 31, 58, 0.6);
    transform: translateX(10px);
}

.rating-stars {
    min-width: 80px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-bar-container {
    flex: 1;
    height: 30px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--primary-cyan));
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(16, 255, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    animation: barGlow 2s ease-in-out infinite;
}

@keyframes barGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 255, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 217, 255, 0.7); }
}

.rating-percentage {
    min-width: 60px;
    text-align: right;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Feedback Form */
.feedback-form-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.feedback-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.label-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    background: rgba(10, 14, 39, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    align-self: flex-end;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Star Rating */
.rating-group {
    background: rgba(0, 217, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 3rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transform: scale(1.2);
}

.rating-text {
    text-align: center;
    color: var(--primary-cyan);
    font-weight: 700;
    margin-top: var(--spacing-sm);
    font-size: 1.1rem;
}

/* Checkbox */
.checkbox-group {
    padding: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 6px;
    background: rgba(10, 14, 39, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan));
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-bg);
    font-weight: 900;
    font-size: 1.2rem;
}

.checkbox-text {
    flex: 1;
}

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    width: 100%;
}

.btn-icon {
    font-size: 1.5rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(16, 255, 0, 0.1);
    border: 2px solid rgba(16, 255, 0, 0.3);
    border-radius: 20px;
    animation: successSlideIn 0.5s ease;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-bg);
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 0 40px rgba(16, 255, 0, 0.6);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-message h3 {
    font-family: var(--font-heading);
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 15px rgba(16, 255, 0, 0.5);
}

.success-message p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        var(--dark-bg-secondary) 0%, 
        var(--dark-bg) 50%,
        var(--dark-bg-secondary) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.review-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 8rem;
    color: rgba(139, 92, 246, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.reviewer-info {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.reviewer-name {
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-rating .stars {
    color: var(--gold);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.review-category {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-cyan);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.load-more-container {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* GPU Acceleration for animated elements */
.info-card,
.feature-card,
.objective-card,
.feature-detail-card,
.instruction-card,
.faq-item,
.story-block,
.review-card {
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* Optimize backdrop-filter elements */
.info-card,
.feature-card,
.objective-card,
.sidebar-card,
.download-card-featured,
.feedback-form-container,
.story-block {
    transform: translateZ(0);
}

/* Reduce repaints during scroll */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Optimize transitions */
.info-card,
.feature-card,
.objective-card,
.btn,
.nav-links a {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: var(--spacing-md) 0;
        gap: var(--spacing-sm);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .download-container {
        grid-template-columns: 1fr;
    }

    .download-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .info-grid,
    .features-grid,
    .objectives-grid,
    .features-detail-grid,
    .instruction-grid,
    .faq-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

