/* ========================================================================
   FRUIT MERGE: MATCH GAME - VAPORWAVE STYLE
   styles.css
   ======================================================================== */

/* -------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------------------------------------- */
:root {
    --primary: #ff71ce;
    --primary-dark: #e050a8;
    --primary-light: #ffb0e0;
    --secondary: #01cdfe;
    --secondary-dark: #00a3cc;
    --secondary-light: #66e0ff;
    --accent: #b967ff;
    --accent-dark: #9340d9;
    --accent-light: #d4a5ff;

    --bg-dark: #0a0015;
    --bg-darker: #050010;
    --bg-card: rgba(20, 5, 40, 0.85);
    --bg-card-hover: rgba(30, 10, 55, 0.95);

    --text-primary: #f0e6ff;
    --text-secondary: #c0b0d8;
    --text-muted: #8a7aaa;
    --text-white: #ffffff;

    --gradient-sunset: linear-gradient(180deg, #ff71ce 0%, #ff9a56 25%, #b967ff 50%, #01cdfe 100%);
    --gradient-hero: linear-gradient(180deg, #1a0030 0%, #0d001a 40%, #050010 100%);
    --gradient-section: linear-gradient(180deg, #0a0015 0%, #0f0020 50%, #0a0015 100%);
    --gradient-card: linear-gradient(135deg, rgba(185, 103, 255, 0.15), rgba(255, 113, 206, 0.1));
    --gradient-text: linear-gradient(90deg, #ff71ce, #01cdfe, #b967ff);
    --gradient-btn: linear-gradient(135deg, #ff71ce 0%, #b967ff 50%, #01cdfe 100%);

    --shadow-glow-pink: 0 0 30px rgba(255, 113, 206, 0.4);
    --shadow-glow-cyan: 0 0 30px rgba(1, 205, 254, 0.4);
    --shadow-glow-purple: 0 0 30px rgba(185, 103, 255, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.6);

    --border-subtle: 1px solid rgba(185, 103, 255, 0.2);
    --border-glow: 1px solid rgba(255, 113, 206, 0.4);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-pixel: 'Press Start 2P', monospace;

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.8s ease;

    --container-max: 1280px;
    --header-height: 80px;
}

/* -------------------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input {
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------------------
   VHS & NOISE OVERLAYS
   ------------------------------------------------------------------------- */
.vhs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    opacity: 0.5;
}

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

/* -------------------------------------------------------------------------
   COOKIE CONSENT BANNER
   ------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(135deg, rgba(10, 0, 21, 0.98), rgba(20, 5, 40, 0.98));
    border-top: 2px solid var(--accent);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    box-shadow: 0 -8px 40px rgba(185, 103, 255, 0.3);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
}

.cookie-icon {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-cookie-accept {
    background: var(--gradient-btn);
    color: var(--text-white);
    border: none;
}

.btn-cookie-accept:hover {
    box-shadow: var(--shadow-glow-pink);
    transform: translateY(-1px);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(185, 103, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(1, 205, 254, 0.3);
}

.btn-cookie-settings:hover {
    border-color: var(--secondary);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding: 16px 0;
    border-top: 1px solid rgba(185, 103, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

/* -------------------------------------------------------------------------
   HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    background: rgba(10, 0, 21, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185, 103, 255, 0.1);
    transition: all var(--transition-med);
    height: var(--header-height);
}

.main-header.scrolled {
    background: rgba(10, 0, 21, 0.95);
    border-bottom-color: rgba(255, 113, 206, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    font-family: var(--font-pixel);
    font-size: 18px;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width var(--transition-med);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--gradient-btn);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    color: var(--text-white) !important;
    -webkit-text-fill-color: var(--text-white);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    box-shadow: var(--shadow-glow-pink);
    transform: translateY(-1px);
}

/* -------------------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) 24px 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Perspective Grid */
.hero-grid-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 50%;
    background-image:
        linear-gradient(rgba(1, 205, 254, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 205, 254, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    transform-origin: bottom center;
    transform: translateX(-50%) perspective(400px) rotateX(60deg);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%);
    animation: gridScroll 8s linear infinite;
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 60px; }
}

/* Sun */
.hero-sun {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff71ce 0%, #ff9a56 40%, #b967ff 100%);
    box-shadow:
        0 0 80px rgba(255, 113, 206, 0.5),
        0 0 160px rgba(255, 113, 206, 0.3),
        0 0 240px rgba(255, 154, 86, 0.2);
    opacity: 0.7;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    animation: sunPulse 6s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.85; transform: translateX(-50%) scale(1.03); }
}

/* Mountains */
.hero-mountains {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.mountain-1 {
    left: 5%;
    border-width: 0 180px 140px 180px;
    border-color: transparent transparent rgba(20, 5, 40, 0.9) transparent;
}

.mountain-2 {
    left: 35%;
    border-width: 0 250px 180px 250px;
    border-color: transparent transparent rgba(15, 3, 30, 0.9) transparent;
}

.mountain-3 {
    right: 5%;
    border-width: 0 200px 150px 200px;
    border-color: transparent transparent rgba(25, 8, 50, 0.9) transparent;
}

/* Palm Trees */
.palm-left,
.palm-right {
    position: absolute;
    bottom: 10%;
    width: 120px;
    height: 300px;
    z-index: 2;
    opacity: 0.15;
}

.palm-left {
    left: 5%;
    background: linear-gradient(to top, var(--accent), transparent 80%);
    clip-path: polygon(50% 0%, 20% 30%, 0% 45%, 15% 50%, 30% 40%, 45% 50%, 35% 60%, 40% 100%, 60% 100%, 65% 60%, 55% 50%, 70% 40%, 85% 50%, 100% 45%, 80% 30%);
}

.palm-right {
    right: 5%;
    background: linear-gradient(to top, var(--primary), transparent 80%);
    clip-path: polygon(50% 0%, 20% 30%, 0% 45%, 15% 50%, 30% 40%, 45% 50%, 35% 60%, 40% 100%, 60% 100%, 65% 60%, 55% 50%, 70% 40%, 85% 50%, 100% 45%, 80% 30%);
    transform: scaleX(-1);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 103, 255, 0.15);
    border: 1px solid rgba(185, 103, 255, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #00ff88;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 6px;
}

.title-line-1 {
    font-size: clamp(48px, 8vw, 96px);
    color: var(--text-white);
    text-shadow:
        0 0 20px rgba(255, 113, 206, 0.5),
        0 0 40px rgba(255, 113, 206, 0.3),
        2px 2px 0 var(--primary-dark);
}

.title-line-2 {
    font-size: clamp(48px, 8vw, 96px);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(1, 205, 254, 0.4));
}

.title-sub {
    display: block;
    font-family: var(--font-pixel);
    font-size: clamp(10px, 2vw, 16px);
    color: var(--secondary);
    letter-spacing: 8px;
    margin-top: 12px;
    text-shadow: 0 0 10px var(--secondary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.8s both;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--text-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-pink), var(--shadow-glow-purple);
    color: var(--text-white);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid rgba(1, 205, 254, 0.4);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-2px);
    color: var(--secondary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    font-family: monospace;
    font-size: 16px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-image-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid rgba(185, 103, 255, 0.3);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-med);
}

.hero-image-frame:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink), var(--shadow-card);
    transform: scale(1.02);
}

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 103, 255, 0.2), transparent 70%);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Hero layout: side by side */
.hero-section {
    display: flex;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Override: hero is full-width with inner flex */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--container-max)) / 2));
    padding-right: max(24px, calc((100vw - var(--container-max)) / 2));
}

/* -------------------------------------------------------------------------
   TICKER / SOCIAL PROOF
   ------------------------------------------------------------------------- */
.ticker-section {
    position: relative;
    z-index: 10;
    background: rgba(5, 0, 16, 0.9);
    border-top: 1px solid rgba(185, 103, 255, 0.1);
    border-bottom: 1px solid rgba(185, 103, 255, 0.1);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.ticker-highlight {
    color: var(--secondary);
    font-weight: 600;
}

/* -------------------------------------------------------------------------
   SECTION COMMONS
   ------------------------------------------------------------------------- */
.section-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(185, 103, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 103, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--secondary);
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(1, 205, 254, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-btn);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* -------------------------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------------------------- */
.about-section {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-section);
    overflow: hidden;
}

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

.about-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(185, 103, 255, 0.08);
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.mini-feature:hover {
    border-color: var(--primary);
    background: rgba(255, 113, 206, 0.1);
}

.mini-icon {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--secondary);
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(185, 103, 255, 0.2);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-med);
}

.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-card-1 {
    top: 0;
    left: 0;
    width: 260px;
    height: 400px;
    z-index: 2;
    transform: rotate(-3deg);
}

.about-img-card-2 {
    top: 60px;
    right: 0;
    width: 260px;
    height: 400px;
    z-index: 1;
    transform: rotate(3deg);
}

.about-img-card:hover {
    transform: rotate(0deg) scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink), var(--shadow-card);
    z-index: 10;
}

/* -------------------------------------------------------------------------
   SCREENSHOTS SECTION
   ------------------------------------------------------------------------- */
.screenshots-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0d001a 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

.screenshots-carousel {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(25% - 24px);
    min-width: 260px;
}

.screenshot-frame {
    background: var(--bg-card);
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-med);
}

.screenshot-frame:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
    transform: translateY(-4px);
}

.frame-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(185, 103, 255, 0.1);
}

.frame-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(185, 103, 255, 0.4);
}

.frame-dot:nth-child(1) { background: var(--primary); }
.frame-dot:nth-child(2) { background: var(--accent); }
.frame-dot:nth-child(3) { background: var(--secondary); }

.frame-title {
    margin-left: auto;
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.screenshot-frame img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.screenshot-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(185, 103, 255, 0.3);
    background: rgba(185, 103, 255, 0.08);
    color: var(--accent-light);
    font-family: monospace;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 113, 206, 0.15);
    box-shadow: var(--shadow-glow-pink);
    color: var(--text-white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(185, 103, 255, 0.3);
    background: transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.carousel-dot:hover {
    border-color: var(--primary);
}

/* -------------------------------------------------------------------------
   FEATURES SECTION
   ------------------------------------------------------------------------- */
.features-section {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-section);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition-med);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow-pink);
    transform: translateY(-4px);
}

.feature-card.revealed:hover {
    transform: translateY(-4px);
}

.feature-card-large {
    grid-column: span 1;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(185, 103, 255, 0.1);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.feature-icon-wrap {
    margin-bottom: 16px;
}

.feature-icon {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-btn);
    transition: width var(--transition-med);
}

.feature-card:hover .feature-line {
    width: 100%;
}

/* -------------------------------------------------------------------------
   SIGNUP SECTION
   ------------------------------------------------------------------------- */
.signup-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #100025 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

.signup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 113, 206, 0.08), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(1, 205, 254, 0.08), transparent 50%);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.signup-title {
    text-align: left;
}

.signup-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 32px;
}

.signup-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.perk-check {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
    flex-shrink: 0;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-muted);
}

.trust-icon {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: #00ff88;
}

/* Form */
.signup-form-wrapper {
    position: relative;
}

.signup-form {
    background: var(--bg-card);
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 113, 206, 0.15);
    background: rgba(0, 0, 0, 0.5);
}

.form-input.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.form-error {
    display: block;
    font-size: 12px;
    color: #ff6666;
    margin-top: 6px;
    min-height: 16px;
}

.form-checkbox-group {
    margin-bottom: 14px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(185, 103, 255, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    transition: all var(--transition-fast);
    position: relative;
    margin-top: 1px;
}

.form-checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--text-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox-label a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Success/Error Messages */
.signup-success,
.signup-error-msg {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.success-icon {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: #00ff88;
    text-shadow: 0 0 20px #00ff88;
    margin-bottom: 16px;
}

.error-icon {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: #ff4444;
    text-shadow: 0 0 20px #ff4444;
    margin-bottom: 16px;
}

.signup-success h3,
.signup-error-msg h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.signup-success p,
.signup-error-msg p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -------------------------------------------------------------------------
   LIVE COUNTER SECTION
   ------------------------------------------------------------------------- */
.live-counter-section {
    padding: 60px 0;
    background: rgba(5, 0, 16, 0.9);
    border-top: 1px solid rgba(185, 103, 255, 0.1);
    border-bottom: 1px solid rgba(185, 103, 255, 0.1);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counter-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(185, 103, 255, 0.05);
    border: 1px solid rgba(185, 103, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.counter-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-pink);
}

.counter-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88;
}

.counter-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
}

.counter-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------------------------
   FAQ SECTION
   ------------------------------------------------------------------------- */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-section);
    overflow: hidden;
}

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

.faq-item {
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
    background: rgba(185, 103, 255, 0.03);
}

.faq-item:hover {
    border-color: rgba(255, 113, 206, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 113, 206, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
    text-align: left;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--accent);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

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

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--secondary);
    text-decoration: underline;
}

/* -------------------------------------------------------------------------
   TRUST SECTION
   ------------------------------------------------------------------------- */
.trust-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark), #0d001a, var(--bg-dark));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--gradient-card);
    border: 1px solid rgba(185, 103, 255, 0.12);
    border-radius: var(--radius-md);
    transition: all var(--transition-med);
}

.trust-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-4px);
}

.trust-card .trust-icon {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
    margin-bottom: 16px;
    display: block;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.main-footer {
    position: relative;
    padding: 80px 0 40px;
    background: var(--bg-darker);
    border-top: 2px solid rgba(185, 103, 255, 0.15);
    overflow: hidden;
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(185, 103, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 103, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-links .contact-note {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
}

.footer-address {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(185, 103, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-legal {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
    margin-bottom: 4px;
}

.footer-age {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 8px;
}

/* -------------------------------------------------------------------------
   BACK TO TOP
   ------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: var(--text-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-pink);
    transition: all var(--transition-fast);
    z-index: 9990;
    cursor: pointer;
    border: none;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow-pink), var(--shadow-glow-purple);
}

/* -------------------------------------------------------------------------
   LEGAL PAGES - SHARED STYLES
   ------------------------------------------------------------------------- */
.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--gradient-section);
}

.legal-hero {
    text-align: center;
    padding: 40px 0 60px;
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-btn);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.legal-hero p {
    font-size: 15px;
    color: var(--text-muted);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(185, 103, 255, 0.15);
    box-shadow: var(--shadow-card);
    color: #1a1a2e;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 36px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(185, 103, 255, 0.2);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: #2a2a4e;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #7c3aed;
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
    color: #1a1a2e;
}

.legal-content .legal-updated {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-bottom: 24px;
}

.legal-content .legal-contact-box {
    background: #f3f0ff;
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 24px 0;
}

.legal-content .legal-contact-box p {
    margin-bottom: 6px;
    font-size: 14px;
}

/* -------------------------------------------------------------------------
   RESPONSIVE DESIGN
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: calc(var(--header-height) + 60px);
    }

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

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

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

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

    .hero-image-frame {
        width: 260px;
        height: 260px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-stack {
        height: 420px;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .signup-title {
        text-align: center;
    }

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

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

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

    .carousel-slide {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 0, 21, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 20px;
        transition: right var(--transition-med);
        border-left: 1px solid rgba(185, 103, 255, 0.2);
        z-index: 99;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .hero-sun {
        width: 180px;
        height: 180px;
    }

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

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

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

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

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

    .about-image-stack {
        height: 360px;
    }

    .about-img-card-1,
    .about-img-card-2 {
        width: 200px;
        height: 320px;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 16px);
        min-width: unset;
    }

    .signup-form {
        padding: 28px 20px;
    }

    .legal-content {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }

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

    .stat-item {
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        width: 200px;
        height: 200px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .palm-left,
    .palm-right {
        display: none;
    }
}

/* -------------------------------------------------------------------------
   ANIMATIONS & SPECIAL EFFECTS
   ------------------------------------------------------------------------- */
@keyframes chromaShift {
    0%, 100% { text-shadow: 2px 0 var(--primary), -2px 0 var(--secondary); }
    25% { text-shadow: -2px 0 var(--primary), 2px 0 var(--secondary); }
    50% { text-shadow: 2px 2px var(--primary), -2px -2px var(--secondary); }
    75% { text-shadow: -2px 2px var(--primary), 2px -2px var(--secondary); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-grid-bg,
    .ticker-track {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .vhs-overlay,
    .noise-overlay,
    .cookie-banner,
    .main-header,
    .back-to-top,
    .hero-grid-bg,
    .hero-sun,
    .hero-mountains,
    .palm-left,
    .palm-right,
    .section-grid-bg,
    .footer-grid-bg {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
