/* =========================================
   2048 Marge Shooter - Premium Design System
   ========================================= */
:root {
    --bg-dark: #0a0c16;
    --bg-surface: #101322;
    --bg-card: rgba(18, 22, 39, 0.7);
    --bg-card-hover: rgba(28, 34, 60, 0.85);
    
    /* Vibrant Neon Game Palette */
    --accent-cyan: #00e5ff;
    --accent-violet: #8c52ff;
    --accent-magenta: #ff2a7a;
    --accent-orange: #ff7b00;
    --accent-gold: #ffc837;
    --accent-green: #00f090;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #00e5ff 0%, #8c52ff 50%, #ff2a7a 100%);
    --button-gradient: linear-gradient(135deg, #ff7b00 0%, #ff2a7a 100%);
    --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --glow-cyan: 0 0 30px rgba(0, 229, 255, 0.35);
    --glow-magenta: 0 0 30px rgba(255, 42, 122, 0.35);
    --glow-orange: 0 0 30px rgba(255, 123, 0, 0.35);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #9aa2c0;
    --text-muted: #676e8a;

    /* Borders & Glass */
    --glass-border: rgba(255, 255, 255, 0.09);
    --glass-border-hover: rgba(0, 229, 255, 0.4);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows */
body::before {
    content: '';
    position: fixed;
    top: -15%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-orange {
    background: linear-gradient(135deg, #ffc837 0%, #ff7b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #00f090 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glass Surface Utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass:hover {
    border-color: var(--glass-border-hover);
}

/* Section Title */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: rgba(10, 12, 22, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(8, 10, 18, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.brand-name span {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--button-gradient);
    color: #fff;
    box-shadow: var(--glow-orange);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 42, 122, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.2);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
}

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

/* =========================================
   Hero Section & Canvas Background
   ========================================= */
.hero {
    position: relative;
    padding: 170px 0 110px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: clamp(2.6rem, 5.2vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.stat-item h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 3D Phone Mockup */
.hero-mockup-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.phone-mockup {
    position: relative;
    width: 290px;
    max-width: 100%;
    border-radius: 42px;
    background: #0f111d;
    padding: 10px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transform: rotateY(-10deg) rotateX(6deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 229, 255, 0.45);
}

.phone-screen {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #050711;
    display: block;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Game Badges */
.floating-tile {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: floatAnim 4s ease-in-out infinite alternate;
    z-index: 3;
}

.tile-2048 {
    top: 8%;
    right: -25px;
    background: linear-gradient(135deg, #ffc837, #ff7b00);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.5);
    animation-delay: 0s;
}

.tile-1024 {
    bottom: 25%;
    left: -30px;
    background: linear-gradient(135deg, #8c52ff, #ff2a7a);
    box-shadow: 0 10px 30px rgba(255, 42, 122, 0.5);
    animation-delay: 1.5s;
}

.tile-512 {
    bottom: 8%;
    right: -20px;
    background: linear-gradient(135deg, #00e5ff, #0077ff);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
    animation-delay: 0.8s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-18px) rotate(6deg);
    }
}

/* =========================================
   Features Grid Section
   ========================================= */
.features-section {
    padding: 110px 0;
    background: var(--bg-surface);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 38px 30px;
    border-radius: var(--radius-lg);
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* =========================================
   Power-Ups Showcase Section
   ========================================= */
.powerups-section {
    padding: 110px 0;
    position: relative;
}

.powerups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.powerup-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--card-gradient);
    position: relative;
}

.powerup-icon-badge {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.powerup-hammer {
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.2), rgba(255, 42, 122, 0.2));
    border: 1px solid rgba(255, 123, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.2);
}

.powerup-swap {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 119, 255, 0.2));
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.powerup-undo {
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.2), rgba(255, 42, 122, 0.2));
    border: 1px solid rgba(140, 82, 255, 0.4);
    box-shadow: 0 0 30px rgba(140, 82, 255, 0.2);
}

.powerup-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.powerup-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

/* =========================================
   How To Play Steps
   ========================================= */
.how-to-play-section {
    padding: 110px 0;
    background: var(--bg-surface);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
}

.step-card {
    padding: 38px 28px;
    border-radius: var(--radius-lg);
    background: var(--card-gradient);
    position: relative;
    border: 1px solid var(--glass-border);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.35);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   Screenshots Carousel & Gallery
   ========================================= */
.screenshots-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

.screenshots-scroll-container {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    padding: 20px 10px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) rgba(255, 255, 255, 0.05);
}

.screenshots-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.screenshots-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.screenshots-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

.screenshot-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
    border-radius: 26px;
    padding: 10px;
    background: rgba(20, 24, 42, 0.8);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    cursor: pointer;
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.25);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.screenshot-label {
    text-align: center;
    padding: 12px 0 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.92);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 420px;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* =========================================
   Leaderboard Feature Spotlight
   ========================================= */
.leaderboard-spotlight {
    padding: 110px 0;
    background: var(--bg-surface);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-features {
    list-style: none;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spotlight-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.spotlight-features li span.icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.leaderboard-preview-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rank-row.rank-1 {
    background: linear-gradient(90deg, rgba(255, 200, 55, 0.15), rgba(255, 123, 0, 0.05));
    border-color: rgba(255, 200, 55, 0.3);
}

.rank-row.rank-you {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.2), rgba(140, 82, 255, 0.1));
    border-color: var(--accent-cyan);
}

.rank-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rank-badge {
    font-weight: 800;
    font-size: 1.1rem;
    width: 28px;
}

.rank-name {
    font-weight: 600;
    color: #fff;
}

.rank-score {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 110px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-cyan);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 28px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 28px 24px;
}

/* =========================================
   CTA Banner Section
   ========================================= */
.cta-section {
    padding: 60px 0 100px;
}

.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.95), rgba(10, 12, 22, 0.98));
    border: 1px solid var(--glass-border-hover);
    padding: 70px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), var(--glow-cyan);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 18px;
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* =========================================
   Contact & Support
   ========================================= */
.contact-section {
    padding: 60px 0 100px;
}

.contact-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
    border-radius: var(--radius-lg);
}

.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.email-pill:hover {
    background: rgba(0, 229, 255, 0.16);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #06070d;
    padding: 70px 0 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 14px;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================================
   Subpages Content (Privacy & Terms)
   ========================================= */
.page-content-wrapper {
    padding: 150px 0 100px;
    min-height: 80vh;
}

.policy-card {
    padding: 50px;
    border-radius: var(--radius-lg);
}

.policy-card h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.policy-card h2 {
    font-size: 1.6rem;
    margin: 36px 0 14px;
    color: var(--accent-cyan);
}

.policy-card p,
.policy-card li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.policy-card ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-card {
        padding: 28px 20px;
    }
}
