*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #F5C542;
    --gold-light: #FFE08A;
    --gold-dark: #C9981A;
    --dark: #0A0A0F;
    --dark-card: #12121A;
    --dark-surface: #1A1A25;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.7);
    --text-tertiary: rgba(255,255,255,0.4);
    --accent-blue: #4A9EFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,15,0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(245,197,66,0.08);
    transition: background 0.3s;
}
nav.scrolled { background: rgba(10,10,15,0.95); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    overflow: hidden;
}
.nav-logo-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.nav-logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    padding: 8px 20px;
    border-radius: 980px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(245,197,66,0.3);
    color: var(--dark) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.6) 25%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.92) 78%, rgba(10,10,15,0.99) 100%),
        url('../images/hero-bg.jpg') center 30% / cover no-repeat;
    background-color: var(--dark);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    15% { opacity: 0.9; transform: translateY(-5vh) scale(1); }
    60% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-60vh) scale(0.3); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-icon-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out both;
}

.shape-blur-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.shape-blur-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.hero-app-icon {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(245,197,66,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245,197,66,0.1);
    border: 1px solid rgba(245,197,66,0.2);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out both;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-title .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 560px;
    margin: 20px auto 40px;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 980px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: -0.01em;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(245,197,66,0.35);
}
.btn-primary svg { width: 20px; height: 20px; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-ship {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(245,197,66,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    z-index: 2;
}
.scroll-indicator span {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* ============ SECTIONS ============ */
section { padding: 120px 24px; position: relative; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}
.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* ============ FEATURES ============ */
#features {
    background:
        radial-gradient(ellipse 50% 40% at 20% 50%, rgba(245,197,66,0.04) 0%, transparent 60%),
        var(--dark);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1120px;
    margin: 0 auto;
    background: rgba(245,197,66,0.06);
    border-radius: 24px;
    overflow: hidden;
}
.feature-card {
    background: var(--dark);
    padding: 48px 36px;
    transition: background 0.3s;
    position: relative;
}
.feature-card:hover { background: var(--dark-card); }
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(245,197,66,0.15), rgba(245,197,66,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ SHOWCASE ============ */
#showcase {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-card) 50%, var(--dark) 100%);
}
.showcase-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.showcase-visual { position: relative; }
.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    border: 4px solid #2a2a3a;
    padding: 10px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 80px rgba(245,197,66,0.08);
}
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.phone-screen img,
.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.phone-glow {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,197,66,0.1) 0%, transparent 60%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.showcase-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.showcase-content h2 .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.showcase-content > p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}
.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.check-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: rgba(245,197,66,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-icon svg {
    width: 12px; height: 12px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 3;
}

/* ============ GAME GALLERY CAROUSEL ============ */
#gallery {
    padding-bottom: 60px;
    overflow: hidden;
}
.gallery-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}
.gallery-viewport {
    overflow: hidden;
    border-radius: 20px;
}
.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}
.gallery-card {
    position: relative;
    min-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
    cursor: pointer;
}
.gallery-card-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/16;
    transition: transform 0.3s;
}
.gallery-card-inner:hover { transform: translateY(-8px); }
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.gallery-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.gallery-card-info span {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(10,10,15,0.8);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
    backdrop-filter: blur(10px);
}
.gallery-btn:hover {
    background: rgba(245,197,66,0.2);
    border-color: rgba(245,197,66,0.4);
}
.gallery-btn-prev { left: 4px; }
.gallery-btn-next { right: 4px; }
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.gallery-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.gallery-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ============ BONUS ============ */
#bonus {
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
#bonus::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,197,66,0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(255,140,50,0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245,220,100,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.bonus-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.bonus-eyebrow {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 24px;
}
.bonus-eyebrow::before,
.bonus-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    vertical-align: middle;
    margin: 0 16px;
}
.bonus-eyebrow::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.bonus-amount {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #FFF8E1, var(--gold-light), var(--gold), var(--gold-dark), var(--gold-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 40px rgba(245,197,66,0.3));
}
@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.bonus-currency {
    position: relative;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.bonus-label {
    position: relative;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.bonus-desc {
    position: relative;
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.bonus-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 980px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.bonus-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 48px rgba(245,197,66,0.45);
}
.bonus-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bonus-sparkle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkleFloat linear infinite;
}
@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 1; transform: translateY(-20px) scale(1); }
    100% { opacity: 0; transform: translateY(-120px) scale(0); }
}
.bonus-timer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
}
.bonus-timer-dot {
    width: 6px; height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* ============ REVIEWS ============ */
#reviews {
    background:
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(245,197,66,0.04) 0%, transparent 60%),
        var(--dark);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}
.review-card {
    padding: 36px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: border-color 0.3s;
    position: relative;
    padding-bottom: 64px;
}
.review-card:hover { border-color: rgba(245,197,66,0.15); }
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.review-stars span {
    color: var(--gold);
    font-size: 16px;
}

/* ============ DOWNLOAD CTA ============ */
#download {
    text-align: center;
    padding: 140px 24px;
    position: relative;
}
#download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(245,197,66,0.08) 0%, transparent 70%);
    pointer-events: none;
}
#download .section-title { position: relative; margin-bottom: 20px; }
#download .section-desc { position: relative; max-width: 500px; margin: 0 auto 40px; }
.download-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.store-badge {
    display: inline-block;
    width: 200px;
    height: 60px;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
}
.store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.store-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.age-notice {
    position: relative;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 16px;
}

/* ============ FOOTER ============ */
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 48px 32px;
}
.footer-top {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--text-tertiary); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.footer-socials a:hover {
    background: rgba(245,197,66,0.15);
    color: var(--gold);
}

/* ============ SCROLL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(10,10,15,0.98);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(245,197,66,0.1);
    }
    .hero { padding: 100px 20px 60px; min-height: 90vh; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 22px; }
    section { padding: 80px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 32px 24px; }
    .showcase-container { grid-template-columns: 1fr; gap: 48px; }
    .showcase-visual { order: -1; }
    .phone-mockup { width: 240px; height: 480px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-card { min-width: 80%; }
    .gallery-carousel { padding: 0 40px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn-primary { width: 100%; justify-content: center; }
}
