/* ============================================================
   SNAKE CLASH! — Terracotta Mediterranean Style
   ============================================================ */

/* ---- CSS Reset & Variables ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Palette */
    --primary: #c1440e;
    --primary-dark: #9a3508;
    --primary-light: #d4622e;
    --secondary: #faf3e8;
    --secondary-dark: #f0e4cc;
    --accent: #5c6b3c;
    --accent-light: #7a8d55;
    --accent-dark: #434f2b;

    /* Extended Palette */
    --terracotta: #c1440e;
    --terracotta-50: rgba(193, 68, 14, 0.05);
    --terracotta-100: rgba(193, 68, 14, 0.1);
    --terracotta-200: rgba(193, 68, 14, 0.2);
    --burnt-sienna: #a0522d;
    --warm-sand: #f5e6c8;
    --cream: #faf3e8;
    --cream-dark: #f0e4cc;
    --olive: #5c6b3c;
    --olive-light: #7a8d55;
    --clay: #8b6914;
    --dark-earth: #3d2b1f;
    --rich-brown: #5d3a1a;

    /* Neutrals */
    --white: #ffffff;
    --black: #1a1208;
    --gray-100: #f7f3ef;
    --gray-200: #ede5d8;
    --gray-300: #d4c8b5;
    --gray-400: #b8a890;
    --gray-500: #8c7a66;
    --gray-600: #6b5d4e;
    --gray-700: #4a3f33;
    --gray-800: #2d2418;

    /* Shadows (warm-tinted) */
    --shadow-sm: 0 1px 3px rgba(93, 58, 26, 0.12), 0 1px 2px rgba(93, 58, 26, 0.08);
    --shadow-md: 0 4px 12px rgba(93, 58, 26, 0.12), 0 2px 6px rgba(93, 58, 26, 0.08);
    --shadow-lg: 0 12px 36px rgba(93, 58, 26, 0.16), 0 4px 12px rgba(93, 58, 26, 0.08);
    --shadow-xl: 0 24px 64px rgba(93, 58, 26, 0.2), 0 8px 24px rgba(93, 58, 26, 0.1);
    --shadow-glow: 0 0 40px rgba(193, 68, 14, 0.2);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
    --font-accent: 'Libre Baskerville', Georgia, serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Borders */
    --border-rustic: 3px solid var(--burnt-sienna);
    --border-light: 1px solid var(--gray-200);
    --border-accent: 2px solid var(--accent);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-arch: 50% 50% 0 0;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* ---- Base Styles ---- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-earth);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

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

.text-primary { color: var(--primary); }
.required { color: var(--primary); }

/* ---- Grain / Noise Texture Overlay ---- */
.hero__grain,
.about__grain,
.screenshots__grain,
.features__grain,
.faq__grain,
.contact__grain,
.live-stats__grain,
.trust__grain,
.footer__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ---- Mosaic Divider ---- */
.mosaic-divider {
    height: 12px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--primary) 0px,
            var(--primary) 12px,
            var(--accent) 12px,
            var(--accent) 24px,
            var(--burnt-sienna) 24px,
            var(--burnt-sienna) 36px,
            var(--warm-sand) 36px,
            var(--warm-sand) 48px,
            var(--clay) 48px,
            var(--clay) 60px,
            var(--olive-light) 60px,
            var(--olive-light) 72px
        );
    position: relative;
    z-index: 2;
}

.mosaic-divider--bottom {
    margin-top: 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(193, 68, 14, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(193, 68, 14, 0.4);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(193, 68, 14, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: var(--gray-300);
}

.btn--ghost:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.section-header--left {
    text-align: left;
    margin: 0 0 var(--space-2xl);
}

.section-header__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: var(--terracotta-100);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    border: 2px solid var(--terracotta-200);
}

.section-header__title {
    margin-bottom: var(--space-md);
}

.section-header__desc {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-family: var(--font-accent);
    font-style: italic;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(250, 243, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 3px solid var(--terracotta-200);
    transition: all var(--transition-base);
}

.header--scrolled {
    background: rgba(250, 243, 232, 0.97);
    box-shadow: var(--shadow-md);
}

.header__bg-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c1440e' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--dark-earth);
}

.nav__logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(93, 58, 26, 0.2));
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.nav__link:hover::after {
    width: 60%;
}

.nav__link--cta {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    padding: 0.5rem 1.4rem;
    border: 2px solid var(--primary);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 26px;
    height: 3px;
    background: var(--dark-earth);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    overflow: hidden;
    background:
        linear-gradient(170deg, var(--secondary) 0%, var(--warm-sand) 40%, var(--secondary-dark) 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c1440e' fill-opacity='0.3'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__mosaic-top,
.hero__mosaic-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 2;
    background:
        repeating-linear-gradient(
            90deg,
            var(--primary) 0px,
            var(--primary) 8px,
            var(--accent) 8px,
            var(--accent) 16px,
            var(--burnt-sienna) 16px,
            var(--burnt-sienna) 24px,
            var(--warm-sand) 24px,
            var(--warm-sand) 32px
        );
}

.hero__mosaic-top { top: var(--header-height); }
.hero__mosaic-bottom { bottom: 0; }

.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-dark);
    background: rgba(92, 107, 60, 0.1);
    border: 2px solid rgba(92, 107, 60, 0.25);
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    margin-bottom: var(--space-xl);
}

.hero__title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title-line--1 {
    font-size: clamp(3rem, 8vw, 6rem);
    animation-delay: 0.3s;
    letter-spacing: -0.03em;
    color: var(--dark-earth);
}

.hero__title-line--2 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    animation-delay: 0.5s;
    letter-spacing: -0.04em;
    color: var(--primary);
    text-shadow: 3px 3px 0px rgba(193, 68, 14, 0.15);
}

.hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 2px;
    height: 40px;
    background: var(--gray-300);
    border-radius: 2px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

/* Hero Visual / Game Icon */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInScale 1s ease forwards 0.6s;
}

.hero__card-arch {
    position: relative;
    background: var(--white);
    border: 4px solid var(--burnt-sienna);
    border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
    padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    overflow: hidden;
}

.hero__card-arch-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background:
        linear-gradient(135deg, var(--primary) 25%, transparent 25%) -10px 0,
        linear-gradient(225deg, var(--primary) 25%, transparent 25%) -10px 0,
        linear-gradient(315deg, var(--primary) 25%, transparent 25%),
        linear-gradient(45deg, var(--primary) 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: var(--warm-sand);
    opacity: 0.12;
}

.hero__card-inner {
    position: relative;
    z-index: 1;
}

.hero__game-icon {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.hero__floating-element {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(93, 58, 26, 0.2));
}

.hero__floating-element--1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero__floating-element--2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 2s;
}

.hero__floating-element--3 {
    top: 50%;
    right: -40px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(5deg); }
    66% { transform: translateY(8px) rotate(-3deg); }
}

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

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

/* ============================================================
   TICKER / SOCIAL PROOF
   ============================================================ */
.ticker {
    background: var(--dark-earth);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker__inner {
    overflow: hidden;
}

.ticker__track {
    display: flex;
    gap: var(--space-3xl);
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker__item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--warm-sand);
    flex-shrink: 0;
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--white);
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.about__card {
    position: relative;
    background: var(--cream);
    border: 3px solid var(--gray-200);
    border-radius: 100px 100px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.about__card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about__card-arch {
    height: 60px;
    background: linear-gradient(135deg, var(--terracotta-100), var(--warm-sand));
    border-bottom: 3px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.about__card-arch::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 14px,
            var(--terracotta-200) 14px,
            var(--terracotta-200) 16px
        );
    opacity: 0.5;
}

.about__card-body {
    padding: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.about__card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.about__card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.about__card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.about__card--main {
    grid-row: span 2;
}

.about__card--wide {
    grid-column: span 2;
}

.about__platforms {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.about__platform {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

/* ============================================================
   SCREENSHOTS GALLERY
   ============================================================ */
.screenshots {
    position: relative;
    padding: var(--space-5xl) 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--warm-sand) 50%, var(--cream) 100%);
    overflow: hidden;
}

.screenshots__carousel {
    position: relative;
    overflow: hidden;
}

.screenshots__track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screenshots__slide {
    flex: 0 0 calc(33.333% - var(--space-xl) * 2 / 3);
    min-width: 0;
}

.screenshots__frame {
    position: relative;
    background: var(--white);
    border: 4px solid var(--burnt-sienna);
    border-radius: 80px 80px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.screenshots__frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.screenshots__frame-arch {
    height: 30px;
    background: linear-gradient(135deg, var(--terracotta-100), var(--warm-sand));
    border-bottom: 2px solid var(--terracotta-200);
}

.screenshots__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshots__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.screenshots__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.screenshots__btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.screenshots__dots {
    display: flex;
    gap: var(--space-sm);
}

.screenshots__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.screenshots__dot--active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--white);
    overflow: hidden;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.features__item {
    position: relative;
    background: var(--cream);
    border: 3px solid var(--gray-200);
    border-radius: 60px 60px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(40px);
}

.features__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.features__item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.features__item.visible:hover {
    transform: translateY(-6px);
}

.features__item-arch {
    height: 24px;
    background: linear-gradient(135deg, var(--terracotta-100), rgba(92, 107, 60, 0.08));
    border-bottom: 2px solid var(--gray-200);
}

.features__item-body {
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
    position: relative;
}

.features__item-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--terracotta-100);
    line-height: 1;
    pointer-events: none;
}

.features__item-icon {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
}

.features__item h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.35rem;
}

.features__item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================================
   LIVE STATS
   ============================================================ */
.live-stats {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--dark-earth);
    overflow: hidden;
}

.live-stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.live-stats__item {
    text-align: center;
    position: relative;
}

.live-stats__pulse {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

.live-stats__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-sand);
    line-height: 1;
}

.live-stats__label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.live-stats__divider {
    width: 2px;
    height: 50px;
    background: var(--gray-700);
    border-radius: 2px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    position: relative;
    padding: var(--space-5xl) 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--warm-sand) 100%);
    overflow: hidden;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq__item {
    background: var(--white);
    border: 3px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--terracotta-200);
}

.faq__item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-earth);
    text-align: left;
    gap: var(--space-md);
    transition: color var(--transition-fast);
}

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

.faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-100);
    border-radius: 50%;
    color: var(--primary);
    transition: all var(--transition-base);
}

.faq__item.active .faq__icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 400px;
}

.faq__answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--gray-600);
    line-height: 1.8;
}

.faq__answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   CONTACT / SIGNUP SECTION
   ============================================================ */
.contact {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--white);
    overflow: hidden;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact__benefit {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact__benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: -2px;
}

.contact__benefit strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--dark-earth);
    margin-bottom: 2px;
}

.contact__benefit p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.contact__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-dark);
}

.contact__trust-item svg {
    color: var(--accent);
}

/* Form */
.contact__form-wrapper {
    position: relative;
    background: var(--cream);
    border: 4px solid var(--burnt-sienna);
    border-radius: 120px 120px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact__form-arch {
    height: 50px;
    background: linear-gradient(135deg, var(--terracotta-100), var(--warm-sand));
    border-bottom: 3px solid var(--terracotta-200);
    position: relative;
}

.contact__form-arch::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 18px,
            var(--terracotta-200) 18px,
            var(--terracotta-200) 20px
        );
    opacity: 0.4;
}

.contact__form {
    padding: var(--space-2xl);
}

.contact__form-title {
    font-size: 1.6rem;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--dark-earth);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group--checkbox {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-earth);
    background: var(--white);
    border: 3px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--terracotta-100);
    outline: none;
}

.form-input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-error {
    display: block;
    font-size: 0.82rem;
    color: #dc2626;
    margin-top: 4px;
    min-height: 0;
}

/* Custom Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox__mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 3px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

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

.form-checkbox input:checked + .form-checkbox__mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.form-checkbox input:focus-visible + .form-checkbox__mark {
    box-shadow: 0 0 0 3px var(--terracotta-200);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact__form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: var(--space-md);
}

/* Success Message */
.contact__success {
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.contact__success-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.contact__success h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--accent-dark);
}

.contact__success p {
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

.contact__success-note {
    font-size: 0.85rem;
    margin-top: var(--space-md) !important;
    color: var(--gray-500) !important;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust {
    position: relative;
    padding: var(--space-4xl) 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--warm-sand) 100%);
    overflow: hidden;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.trust__card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.trust__card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust__card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.trust__card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.trust__card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    background: var(--dark-earth);
    color: var(--gray-400);
    padding-top: 0;
    overflow: hidden;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: var(--space-4xl);
    padding: var(--space-4xl) 0 var(--space-2xl);
    position: relative;
    z-index: 1;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.footer__logo .nav__logo-text {
    color: var(--warm-sand);
}

.footer__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer__developer {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--warm-sand);
    margin-bottom: var(--space-md);
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__col a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer__col a:hover {
    color: var(--warm-sand);
}

.footer__col li:not(:has(a)) {
    font-size: 0.9rem;
}

.footer__address {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
    position: relative;
    z-index: 1;
}

.footer__address p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.footer__bottom {
    padding: var(--space-lg) 0 var(--space-2xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer__age {
    margin-top: var(--space-xs);
    font-size: 0.8rem !important;
    color: var(--gray-600) !important;
    font-weight: 600;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    border-top: 4px solid var(--primary);
    box-shadow: 0 -8px 32px rgba(93, 58, 26, 0.15);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-consent__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-consent__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-consent__text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent__text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.cookie-consent__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-settings {
    border-top: 2px solid var(--gray-200);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-settings__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
}

.cookie-settings__inner h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.cookie-option {
    margin-bottom: var(--space-md);
}

.cookie-option label {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-left: 1.8rem;
}

/* ============================================================
   AGE VERIFICATION MODAL
   ============================================================ */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.age-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 8, 0.75);
    backdrop-filter: blur(8px);
}

.age-modal__content {
    position: relative;
    background: var(--cream);
    border: 4px solid var(--burnt-sienna);
    border-radius: 100px 100px var(--radius-lg) var(--radius-lg);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInScale 0.5s ease;
}

.age-modal__arch {
    height: 40px;
    background: linear-gradient(135deg, var(--terracotta-100), var(--warm-sand));
    border-bottom: 3px solid var(--terracotta-200);
}

.age-modal__body {
    padding: var(--space-2xl);
    text-align: center;
}

.age-modal__icon {
    margin-bottom: var(--space-md);
}

.age-modal__game-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.age-modal__body h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.age-modal__body p {
    color: var(--gray-600);
    line-height: 1.6;
}

.age-modal__sub {
    margin-top: var(--space-md);
    font-weight: 600;
    color: var(--dark-earth) !important;
}

.age-modal__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.age-modal__note {
    font-size: 0.8rem;
    color: var(--gray-500) !important;
    margin-top: var(--space-lg);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background: linear-gradient(170deg, var(--secondary) 0%, var(--warm-sand) 100%);
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.legal-hero p {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.legal-content {
    background: var(--white);
    padding: var(--space-4xl) 0;
    position: relative;
}

.legal-content .container {
    max-width: 860px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--terracotta-200);
    color: var(--primary-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--dark-earth);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--gray-700);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    color: var(--gray-700);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: var(--dark-earth);
}

.legal-content .info-box {
    background: var(--cream);
    border: 2px solid var(--terracotta-200);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.legal-content .info-box p {
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-3xl);
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__game-icon {
        width: 200px;
        height: 200px;
    }

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

    .about__card--main {
        grid-row: auto;
    }

    .about__card--wide {
        grid-column: auto;
    }

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

    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .screenshots__slide {
        flex: 0 0 calc(50% - var(--space-xl) / 2);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: -8px 0 32px rgba(93, 58, 26, 0.2);
        gap: var(--space-xs);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        width: 100%;
    }

    .nav__link--cta {
        text-align: center;
        margin-top: var(--space-md);
    }

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

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

    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero__stat-divider {
        width: 40px;
        height: 2px;
    }

    .live-stats__grid {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .live-stats__divider {
        width: 40px;
        height: 2px;
    }

    .screenshots__slide {
        flex: 0 0 85%;
    }

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

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__actions .btn {
        flex: 1;
    }

    .contact__form-wrapper {
        border-radius: 80px 80px var(--radius-lg) var(--radius-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --space-5xl: 4rem;
        --space-4xl: 3rem;
    }

    .hero__title-line--1 {
        font-size: 2.5rem;
    }

    .hero__title-line--2 {
        font-size: 3rem;
    }

    .hero__card-arch {
        border-radius: 140px 140px var(--radius-lg) var(--radius-lg);
        padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    }

    .hero__game-icon {
        width: 160px;
        height: 160px;
    }

    .about__card {
        border-radius: 60px 60px var(--radius-lg) var(--radius-lg);
    }

    .contact__form-wrapper {
        border-radius: 60px 60px var(--radius-lg) var(--radius-lg);
    }

    .btn--lg {
        padding: 0.85rem 1.8rem;
        font-size: 1rem;
    }
}

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

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Nav menu overlay for mobile ---- */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 8, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav__overlay.active {
    opacity: 1;
    pointer-events: all;
}
