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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    background: #f6f3ea;
    color: #18251d;
    overflow-x: hidden;
}

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

button,
a {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

:root {
    --green-dark: #173b29;
    --green: #2f6b3f;
    --green-light: #6fa84b;
    --green-soft: #dce8ce;

    --gold: #e6a928;
    --gold-light: #f6c957;

    --cream: #f6f3ea;
    --cream-dark: #ebe5d5;

    --brown: #79552d;
    --brown-dark: #3c2918;

    --white: #ffffff;
    --black: #111712;

    --text: #243127;
    --text-muted: #657064;

    --shadow: 0 20px 50px rgba(29, 54, 35, 0.14);

    --heading-font: "Barlow Condensed", sans-serif;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   PRELOADER
========================================================= */

/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at center,
            rgba(47, 107, 63, 0.35),
            transparent 45%),
        var(--green-dark);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


/* Hide Preloader */

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================================
   LOADER
========================================================= */

.loader {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    color: white;
}


/* =========================================================
   LOGO AREA
========================================================= */

.loader-icon {
    position: relative;

    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    animation: loaderFloat 2.5s ease-in-out infinite;
}


/* Golden Glow Behind Logo */

.loader-icon::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;
    background: var(--gold-light);
    opacity: 0.2;

    filter: blur(28px);
    animation: loaderGlow 2.5s ease-in-out infinite;
}


/* Loading Ring */

.loader-icon::after {
    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.12);

    border-top-color: var(--gold-light);
    border-right-color: var(--gold);

    animation: loaderSpin 1.4s linear infinite;
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.loader-icon img {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    filter:
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}


/* ======== loader text ===== */

.loader span {
    position: relative;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.loader span::after {
    content: "";
    display: inline-block;
    width: 18px;
    animation: loadingDots 1.5s steps(4, end) infinite;
}

@keyframes loaderFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes loaderGlow {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.18;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.38;
    }
}


@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes loadingDots {
    0% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: "..";
    }

    75%,
    100% {
        content: "...";
    }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(20, 48, 32, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(16, 42, 27, 0.97);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    width: min(1250px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: white;
}


.brand-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 7px;
    background: #2a1609;
    border: 1px solid rgba(246, 201, 87, 0.8);
    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(230, 169, 40, 0.18);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand:hover .brand-icon {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 22px rgba(230, 169, 40, 0.3);
}

.brand:hover .brand-icon img {
    transform: scale(1.08);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.92;
}

.brand-text strong {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.brand-text span {
    margin-top: 3px;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 800;
    /* letter-spacing: 0.4px; */
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Desktop Nav */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 30px 0;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.desktop-nav .nav-download {
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: 0 7px 20px rgba(230, 169, 40, 0.25);
}

.desktop-nav .nav-download::after {
    display: none;
}

.desktop-nav .nav-download:hover {
    background: var(--gold-light);
    color: var(--brown-dark);
}

/* Mobile */

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    color: white;
    font-size: 18px;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 790px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg,
            rgba(13, 39, 24, 0.92) 0%,
            rgba(13, 39, 24, 0.78) 40%,
            rgba(13, 39, 24, 0.3) 75%,
            rgba(13, 39, 24, 0.2) 100%),
        url("../images/games/morning-grain-farm.png") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: -2;
    background:
        url("../images/games/morning-grain-farm.png") center / cover no-repeat;
    opacity: 0.18;
    filter: blur(3px);
    animation: heroBackgroundMove 20s ease-in-out infinite alternate;
}

@keyframes heroBackgroundMove {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Background overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(8, 30, 18, 0.25) 0%,
            transparent 35%,
            rgba(7, 24, 14, 0.88) 100%),
        radial-gradient(circle at 70% 35%,
            rgba(246, 201, 87, 0.12),
            transparent 35%);
    pointer-events: none;
}

/* Decorative sun */

.hero-sun {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 50px;
    right: 70%;
    border-radius: 50%;
    /* background: rgba(255, 205, 91, 0.28); */
    background: rgb(252, 183, 21);
    filter: blur(7px);
    pointer-events: none;
    animation: sunPulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes sunPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.65;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow:
        0 0 10px var(--gold-light),
        0 0 22px rgba(246, 201, 87, 0.9);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0.4);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translateY(-180px) translateX(25px) scale(1.1);
    }

    80% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-350px) translateX(-20px) scale(0.4);
        opacity: 0;
        /* was 4 — now it actually fades out instead of popping off */
    }
}

.hero-particles span:nth-child(1) {
    left: 10%;
    bottom: 10%;
    animation-duration: 8s;
}

.hero-particles span:nth-child(2) {
    left: 25%;
    bottom: 5%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
    left: 42%;
    bottom: 15%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.hero-particles span:nth-child(4) {
    left: 58%;
    bottom: 8%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.hero-particles span:nth-child(5) {
    left: 75%;
    bottom: 20%;
    animation-duration: 10s;
}

.hero-particles span:nth-child(6) {
    left: 88%;
    bottom: 10%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.hero-particles span:nth-child(7) {
    left: 35%;
    bottom: 25%;
    animation-duration: 7s;
}

.hero-particles span:nth-child(8) {
    left: 65%;
    bottom: 5%;
    animation-duration: 14s;
    animation-delay: 2s;
}

.hero-particles span:nth-child(9) {
    left: 15%;
    bottom: 30%;
    animation-duration: 9s;
}

.hero-particles span:nth-child(10) {
    left: 92%;
    bottom: 15%;
    animation-duration: 10s;
    animation-delay: 5s;
}

.hero-particles span:nth-child(11) {
    left: 20%;
    bottom: 10%;
    animation-duration: 10s;
    animation-delay: 1s;


}

.hero-particles span:nth-child(12) {
    left: 30%;
    bottom: 1%;
    animation-duration: 10s;
    animation-delay: 1s;


}

.hero-particles span:nth-child(13) {
    left: 35%;
    bottom: 5%;
    animation-duration: 10s;
    animation-delay: 1s;

}

.hero-particles span:nth-child(14) {
    left: 5%;
    bottom: 5%;
    animation-duration: 10s;
    animation-delay: 1s;

}

.hero-particles span:nth-child(15) {
    left: 1%;
    bottom: 0%;
    animation-duration: 7s;
    animation-delay: 10s;

}

/* =========================================================
   HERO CLOUDS
========================================================= */

.hero-cloud {
    position: absolute;
    width: 170px;
    height: 55px;
    border-radius: 50px;
    /* background: rgba(255, 255, 255, 0.18); */
    background: rgba(255, 255, 255, 0.726);
    filter: blur(3px);
    pointer-events: none;
    z-index: 4;
    will-change: transform, opacity;
}

.hero-cloud::before,
.hero-cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}

.hero-cloud::before {
    width: 75px;
    height: 75px;
    left: 25px;
    bottom: 5px;
}

.hero-cloud::after {
    width: 95px;
    height: 95px;
    right: 20px;
    bottom: 2px;
}

/* =========================================================
   HERO CLOUD POSITIONS
========================================================= */

.cloud-one {
    top: 160px;
    right: 85%;
    animation: cloudOneMove 38s ease-in-out infinite;
}

.cloud-two {
    top: 130px;
    right: 60%;
    animation: cloudTwoMove 30s ease-in-out infinite;
}

.cloud-three {
    top: 105px;
    right: 35%;
    animation: cloudThreeMove 18s ease-in-out infinite;
}


/* =========================================================
   CLOUD ANIMATIONS
========================================================= */

@keyframes cloudOneMove {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.20;
    }

    50% {
        transform: translateX(230px) translateY(-12px) scale(1.04);
        opacity: 0.65;
    }

    100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.20;
    }
}

@keyframes cloudTwoMove {
    0% {
        transform: translateX(0) translateY(0) scale(0.75);
        opacity: 0.12;
    }

    50% {
        transform: translateX(-130px) translateY(20px) scale(0.8);
        opacity: 0.44;
    }

    100% {
        transform: translateX(0) translateY(0) scale(0.75);
        opacity: 0.12;
    }
}

@keyframes cloudThreeMove {
    0% {
        transform: translateX(0) translateY(0) scale(0.55);
        opacity: 0.32;
    }

    50% {
        transform: translateX(80px) translateY(-8px) scale(0.6);
        opacity: 0.55;
    }

    100% {
        transform: translateX(0) translateY(0) scale(0.55);
        opacity: 0.32;
    }
}

.hero-content {
    position: relative;
    z-index: 6;
    width: min(650px, 100%);
    margin-left: max(20px,
            calc((100vw - 1180px) / 2));
    padding-top: 70px;
    animation: heroContentReveal 1s ease forwards;
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border:
        1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
    color:
        rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 12px var(--gold-light);
}

.hero h1 {
    margin-top: 24px;
    font-family: var(--heading-font);
    font-size:
        clamp(70px, 8vw, 118px);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -2px;
    color: white;
    text-transform: uppercase;
    text-shadow:
        0 4px 0 rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.35);
    animation: titleReveal 1s ease 0.15s both;
}

.hero h1 span {
    display: block;
    background:
        linear-gradient(180deg,
            #ffe89a,
            var(--gold-light),
            var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform:
            translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0) scale(1);
    }
}

.hero-subtitle {
    max-width: 540px;
    margin-top: 28px;
    color: white;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
}

.hero-description {
    max-width: 540px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 8px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 900;
    letter-spacing: 0.4px;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    font-size: 14px;
}

.btn span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 0.9;
}

.btn small {
    font-family: "Nunito", sans-serif;
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            var(--gold-light),
            var(--gold));
    color: var(--brown-dark);
    box-shadow:
        0 12px 30px rgba(230, 169, 40, 0.28);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 140%;
}

.btn-primary .btn-icon {
    background: rgba(255, 255, 255, 0.28);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform:
        translateY(-4px) scale(1.02);
    box-shadow:
        0 18px 40px rgba(230, 169, 40, 0.42);
}

.btn-outline {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.04));
    color: white;
    border-color:
        rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
    background:
        rgba(255, 255, 255, 0.18);
    border-color:
        rgba(255, 255, 255, 0.5);
}

.btn-outline .btn-icon {
    background: rgba(255, 255, 255, 0.13);
}

/* Hero Stores */
.hero-stores {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.available-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 3px;
}

.mini-store {
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    color: white;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.mini-store:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.mini-store i {
    font-size: 23px;
}

.mini-store span {
    display: flex;
    flex-direction: column;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 0.9;
}

.mini-store small {
    font-family: "Nunito", sans-serif;
    font-size: 7px;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}


/* Hero Artwork */
.hero-artwork {
    position: absolute;
    z-index: 4;
    right: 16%;
    bottom: 5%;
    width: min(320px, 48vw);
    pointer-events: none;
    animation:
        artworkEntrance 1.2s ease forwards;
}

/* .hero-artwork::after {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: 30px;
    border:
        1px solid rgba(246, 201, 87, 0.3);
    box-shadow:
        inset 0 0 30px rgba(246, 201, 87, 0.08);
    pointer-events: none;
} */

@keyframes artworkEntrance {
    from {
        opacity: 0;
        transform:
            translateX(80px) scale(0.92);
    }

    to {
        opacity: 1;
        transform:
            translateX(0) scale(1);
    }
}

.hero-artwork img {
    width: 100%;
    border-radius: 35px;
    filter:
        drop-shadow(0 30px 35px rgba(0, 0, 0, 0.38));
    animation:
        artworkFloat 5s ease-in-out infinite,
        artworkGlow 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes artworkFloat {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.artwork-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(246, 201, 87, 0.38),
            rgba(246, 201, 87, 0.12),
            transparent 70%);
    filter: blur(70px);
    z-index: -1;
    animation:
        artworkGlow 4s ease-in-out infinite;
}

@keyframes artworkFloat {

    0%,
    100% {
        transform:
            translateY(0) rotate(1.5deg);
    }

    50% {
        transform:
            translateY(-16px) rotate(2.5deg);
    }
}

@keyframes artworkGlow {

    0%,
    100% {
        filter:
            drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(246, 201, 87, 0.08));
    }

    50% {
        filter:
            drop-shadow(0 35px 45px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 35px rgba(246, 201, 87, 0.25));
    }
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(transparent,
            rgba(16, 38, 23, 0.8));
}


/* =========================================================
   STATS
========================================================= */
.stats-section {
    position: relative;
    z-index: 5;
    background:
        linear-gradient(90deg,
            #123522,
            #193f2a,
            #123522);
    color: white;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -200px;
    top: -250px;
    border-radius: 50%;
    background:
        rgba(246, 201, 87, 0.05);
    filter: blur(40px);
}

.stats-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -250px;
    border-radius: 50%;
    background:
        rgba(111, 168, 75, 0.08);
    filter: blur(50px);
}

.stats-container {
    position: relative;
    z-index: 2;
    min-height: 135px;
    display: grid;
    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 25px;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 20px;
    transition:
        transform 0.3s ease;
}

.stat-item:hover {
    transform:
        translateY(-6px);
}

.stat-item strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 46px;
    font-weight: 900;
    background:
        linear-gradient(180deg,
            #fff1ad,
            var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
    text-shadow:
        0 8px 20px rgba(230, 169, 40, 0.2);
}

.stat-item span {
    display: block;
    margin-top: 9px;
    color:
        rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-item::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform:
        translate(-50%, -50%);
    border-radius: 50%;
    background:
        rgba(246, 201, 87, 0);
    filter: blur(30px);
    transition:
        0.3s ease;
    z-index: -1;
}

.stat-item:hover::before {
    background:
        rgba(246, 201, 87, 0.16);
}

.stat-divider {
    width: 1px;
    height: 55px;
    background:
        linear-gradient(transparent,
            rgba(246, 201, 87, 0.4),
            transparent);
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 110px 0;
}


/* Section label */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--green);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-label span {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 7px;

    background: var(--green);

    color: white;

    font-family: var(--heading-font);

    font-size: 16px;

    letter-spacing: 0;
}

.section-label.center {
    justify-content: center;
}

.section-label.light {
    color: var(--gold-light);
}

.section-label.light span {
    background: var(--gold);
    color: var(--brown-dark);
}


/* Section Heading */

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-top: 17px;
    font-family: var(--heading-font);
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--green-dark);
}

.section-heading h2 span {
    display: block;
    color: var(--green-light);
}

.section-heading p {
    max-width: 550px;
    margin: 18px auto 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ABOUT
========================================================= */

/* .about {
    background: var(--cream);
} */

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 80%);
    height: 1px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(230, 169, 40, 0.5),
            transparent);
}


.about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 50%,
            rgba(230, 169, 40, 0.10),
            transparent 28%),
        radial-gradient(circle at 85% 30%,
            rgba(111, 168, 75, 0.08),
            transparent 30%),
        var(--cream);
}


.about-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 5;
}

.about-glow-one {
    top: 10%;
    left: -150px;
    background: rgba(230, 170, 40, 0.37);
}

.about-glow-two {
    right: -150px;
    bottom: 5%;
    /* background: rgba(111, 168, 75, 0.10); */
    background: rgba(111, 168, 75, 0.267);
}

.about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(29, 54, 35, 0.16);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.about-image:hover .image-frame {
    transform: translateY(-8px);

    box-shadow:
        0 35px 80px rgba(29, 54, 35, 0.22);
}


.image-frame img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
    border-radius: 12px;
    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.about-image:hover .image-frame img {
    transform: scale(1.04);
    filter: saturate(1.08);
}

.image-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 5px solid var(--gold);
    z-index: 2;
}

.image-decoration.top-left {
    top: -15px;
    left: -15px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 14px 0 0 0;
}

.image-decoration.bottom-right {
    right: -15px;
    bottom: -15px;
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 14px 0;
}

.floating-card {
    position: absolute;
    right: -30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow);
    z-index: 4;
    animation: floatingCardMove 4s ease-in-out infinite;
}

@keyframes floatingCardMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--green-soft);
    border-radius: 9px;
    font-size: 22px;
    animation: plantPulse 2.5s ease-in-out infinite;
}

@keyframes plantPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.19) rotate(-10deg);
    }
}

.floating-card div:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--green-dark);

    font-family: var(--heading-font);

    font-size: 19px;
}

.floating-card span {
    color: var(--text-muted);

    font-size: 11px;

    font-weight: 700;
}

.about-content h2 {
    margin-top: 18px;

    font-family: var(--heading-font);

    font-size: clamp(50px, 5vw, 72px);

    font-weight: 900;

    line-height: 0.87;

    color: var(--green-dark);
}

.about-content h2 span {
    display: block;

    color: var(--green-light);
}

.about-content .lead {
    margin-top: 25px;

    color: var(--green);

    font-size: 19px;

    font-weight: 800;

    line-height: 1.45;
}

.about-content p:not(.lead) {
    margin-top: 15px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.75;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 25px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.about-point:hover {
    transform: translateX(6px);
}

.about-point span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 11px;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.about-point:hover span {
    transform: scale(1.12);
    background: var(--gold);
    color: var(--brown-dark);
    cursor: default;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #f7f4ec 0%,
            #f3efe5 100%);
}

.features::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: 120px;
    left: -300px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(218, 164, 43, 0.13),
            transparent 70%);
    pointer-events: none;
}

.features::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(62, 113, 67, 0.12),
            transparent 70%);
    pointer-events: none;
}

.features .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   FEATURES GRID
========================================================= */

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


/*----------- feature card ----------*/

.feature-showcase-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--green-dark);
    box-shadow:
        0 18px 45px rgba(23, 47, 30, 0.14);
    isolation: isolate;
    cursor: pointer;
    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.45s ease;
}


.feature-showcase-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 30px 60px rgba(23, 47, 30, 0.22);
}

/* CITY OF FUTURE */

.feature-city {
    grid-column: span 2;
    min-height: 440px;
}


/*------- Feature img ---*/

.feature-showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1),
        filter 0.4s ease;
}

.feature-showcase-card:hover img {
    transform: scale(1.08);
    filter:
        saturate(1.1) contrast(1.04);
}

/*----- IMAGE OVERLAY ---*/

.feature-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(7, 25, 14, 0.08) 0%,
            rgba(7, 25, 14, 0.12) 35%,
            rgba(7, 25, 14, 0.9) 100%);

    z-index: 1;
}

/*----- content --- */

.feature-content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Number */

.feature-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background:
        rgba(255, 255, 255, 0.15);
    border:
        1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter:
        blur(12px);
    color: white;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 900;
}

/* icon */

.feature-icon-box {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background:
        var(--gold);
    color:
        var(--brown-dark);
    font-size: 19px;
    box-shadow:
        0 8px 25px rgba(230, 169, 40, 0.35);
    transition:
        transform 0.4s ease;
}

.feature-showcase-card:hover .feature-icon-box {
    transform:
        rotate(-8deg) scale(1.08);
}

/*--------- text  ---- */

.feature-tag {
    display: inline-block;
    margin-bottom: 8px;
    color:
        var(--gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.feature-showcase-card h3 {
    margin: 0;
    color: white;
    font-family:
        var(--heading-font);
    font-size:
        clamp(34px, 3vw, 52px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3);
}


.feature-showcase-card p {
    max-width: 480px;
    margin-top: 13px;
    color:
        rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
}

/*----- arrrow ----*/

.feature-arrow {
    position: absolute;
    z-index: 3;
    right: 25px;
    bottom: 25px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.15);
    border:
        1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter:
        blur(10px);
    color: white;
    font-size: 14px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.feature-showcase-card:hover .feature-arrow {
    background:
        var(--gold);
    color:
        var(--brown-dark);
    transform:
        rotate(45deg);
}


/* First card */

.feature-large {
    grid-column:
        span 2;
    min-height:
        480px;
}


/* Wide research card */

.feature-wide {
    grid-column:
        span 2;
    min-height:
        410px;
}

/*------- large card text ----------*/

.feature-large h3,
.feature-wide h3 {
    font-size:
        clamp(44px, 4vw, 68px);
}


/* CARD ENTRANCE ANIMATION -----*/

.feature-showcase-card.reveal {
    opacity: 0;
    transform:
        translateY(45px) scale(0.98);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.4s ease;
}


.feature-showcase-card.reveal.active {
    opacity: 1;
    transform:
        translateY(0) scale(1);
}


/*  TABLET */

@media (max-width: 900px) {
    .features-showcase {
        gap: 18px;
    }

    .feature-showcase-card {
        min-height: 330px;
    }

    .feature-large {
        min-height: 430px;
    }

}


/* MOBILE */
@media (max-width: 700px) {
    .features {
        padding:
            80px 0;
    }

    .features-showcase {
        grid-template-columns:
            1fr;
        gap:
            18px;
    }

    .feature-showcase-card,
    .feature-large,
    .feature-wide {
        grid-column:
            auto;
        min-height:
            400px;
    }

    .feature-content {
        padding:
            22px;
    }

    .feature-showcase-card h3,
    .feature-large h3,
    .feature-wide h3 {
        font-size:
            42px;
    }

    .feature-showcase-card p {
        max-width:
            90%;
        font-size:
            13px;
    }

    .feature-number,
    .feature-icon-box {
        width:
            43px;
        height:
            43px;
        border-radius:
            12px;
    }

    .feature-city {
        grid-column: auto;
        min-height: 380px;
    }
}

.feature-multimedia img {
    object-position: center 65%;
    transform: scale(1.25);
}

.feature-multimedia:hover img {
    transform: scale(1.32);
}


/* =========================================================
   SCREENSHOTS
========================================================= */

.screenshots {
    background:
        linear-gradient(180deg,
            #eef1e7,
            #e5ebdd);
}

.screenshots-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}
.screenshots-track {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* overflow: hidden; */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 30px 35px;
    scroll-snap-type: x mandatory;
}

.screenshots-track::-webkit-scrollbar {
    display: none;
}

 .screenshot-card {
    flex: 0 0 260px;
    padding: 8px;
    border-radius: 22px;
    background: #17291c;
    box-shadow:
        0 25px 45px rgba(20, 48, 28, 0.18);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    scroll-snap-align: center;
}

.screenshot-card.active {
    transform: scale(1.06);
    box-shadow:
        0 30px 55px rgba(20, 48, 28, 0.25);
}

.screenshot-inner {
    overflow: hidden;
    border-radius: 16px;
    background: #101b13;
}

.screenshot-inner img {
    width: 100%;
    aspect-ratio: 0.57;
    object-fit: cover;
}

.slider-arrow {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green-dark);
    color: white;
    transition: 0.25s ease;
    z-index: 5;
}

.slider-arrow:hover {
    background: var(--green);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 5px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: #aeb9a7;
    transition: 0.25s ease;
}

.slider-dot.active {
    width: 25px;
    border-radius: 20px;
    background: var(--gold);
}

.gameplay-video {
    width: 100%;
    aspect-ratio: 0.57;
    display: block;
    object-fit: cover;
}


/*  FUTURE SHOWCASE  */
.future-showcase {
    max-width: 1180px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.future-card {
    overflow: hidden;
    border-radius: 22px;
    background: #17291c;
    box-shadow:
        0 25px 50px rgba(20, 48, 28, 0.18);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.future-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.future-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(20, 48, 28, 0.28);
}

.future-card:hover img {
    transform: scale(1.03);
}


/* Tablet & Mobile */
@media (max-width: 768px) {
    .future-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
}


.future-intro {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 25px;
}

.future-intro span,
.gameplay-intro span {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
}

.future-intro h3,
.gameplay-intro h3 {
    margin: 8px 0 8px;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: var(--green-dark);
}

.future-intro p {
    margin: 0;
    color: #657064;
}

.gameplay-intro {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 10px;
}


/* =========================================================
   TRAILER
========================================================= */

.trailer {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(13, 42, 25, 0.84),
            rgba(13, 42, 25, 0.88)),
        url("../images/gallery/morning-grain-feature.png") center / cover no-repeat;
}

.trailer-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(246, 201, 87, 0.13),
            transparent 38%);
}

.trailer-content {
    position: relative;
    text-align: center;
    color: white;
}

.trailer h2 {
    margin-top: 20px;
    font-family: var(--heading-font);
    font-size: clamp(55px, 7vw, 90px);
    line-height: 0.86;
    font-weight: 900;
}

.trailer h2 span {
    display: block;

    color: var(--gold-light);
}

.trailer-content p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.big-play-button {
    width: 110px;
    height: 110px;
    margin-top: 35px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s ease;
}

.big-play-button:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.17);
}

.play-circle {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 20px;
    padding-left: 4px;
    box-shadow:
        0 10px 30px rgba(230, 169, 40, 0.3);
}

.watch-label {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* =========================================================
   HOW TO PLAY
========================================================= */

.roadmap {
    max-width: 1200px;
    margin: 70px auto 0;
}


/* =================
   ROADMAP GRID
===================== */

.steps-roadmap {
    display: grid;

    grid-template-columns:
        1fr
        100px
        1fr
        100px
        1fr;

    grid-template-rows:
        auto
        130px
        auto;

    align-items: center;
}


/* ======
   STEP CARD
====== */

.step-card {
    position: relative;
    text-align: center;
    padding: 20px;
}


.step-number {
    color: rgba(47, 107, 63, 0.18);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 900;
}


.step-icon {
    width: 80px;
    height: 80px;
    margin: 5px auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    box-shadow:
        0 12px 30px rgba(40, 65, 42, 0.09);
    font-size: 34px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.step-card:hover .step-icon {
    transform:
        translateY(-8px)
        scale(1.08);
    box-shadow:
        0 20px 40px rgba(40, 65, 42, 0.16);
}


.step-card h3 {
    font-family: var(--heading-font);
    font-size: 28px;
    color: var(--green-dark);
}


.step-card p {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* ======
   STEP POSITIONS - TOP ROW
======= */

.step-plant {
    grid-column: 1;
    grid-row: 1;
}


.step-grow {
    grid-column: 3;
    grid-row: 1;
}


.step-harvest {
    grid-column: 5;
    grid-row: 1;
}


/* =========
   STEP POSITIONS - BOTTOM ROW
========= */

.step-town {
    grid-column: 1;
    grid-row: 3;
}


.step-build {
    grid-column: 3;
    grid-row: 3;
}


.step-expand {
    grid-column: 5;
    grid-row: 3;
}


/* =============
   HORIZONTAL CONNECTORS
============= */

.road-connector {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--gold);
}


.road-connector span {
    width: 28px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold)
        );
}


.road-connector.right span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}


.road-connector.left span:first-child {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold)
        );
}


.road-connector.left span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}


.road-connector i {
    font-size: 18px;
    color: var(--gold);
}


/* ==================
   CONNECTOR POSITIONS
================== */

/* Plant → Grow */

.connector-plant-grow {
    grid-column: 2;
    grid-row: 1;
}


/* Grow → Harvest */

.connector-grow-harvest {
    grid-column: 4;
    grid-row: 1;
}


/* Town ← Build */

.connector-town-build {
    grid-column: 2;
    grid-row: 3;
}


/* Build ← Expand */

.connector-build-expand {
    grid-column: 4;
    grid-row: 3;
}


/* =============
   VERTICAL TURN
============= */

.road-turn {
    grid-column: 5;
    grid-row: 2;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    height: 100%;
}


.road-turn span {
    width: 2px;
    height: 35px;

    background:
        linear-gradient(
            to bottom,
            rgba(220, 160, 40, 0.2),
            var(--gold)
        );
}


.turn-arrow {
    width: 48px;
    height: 48px;
    margin: 8px 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow:
        0 10px 25px rgba(220, 160, 40, 0.3);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.turn-arrow:hover {
    transform: scale(1.1);
    box-shadow:
        0 15px 30px rgba(220, 160, 40, 0.45);
}



/* =========================================================
   DOWNLOAD
========================================================= */

.download {
    position: relative;

    overflow: hidden;

    background: var(--green-dark);

    color: white;
}

.download-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 75% 50%,
            rgba(111, 168, 75, 0.25),
            transparent 35%);
}

.download-container {
    position: relative;
    z-index: 2;

    min-height: 500px;

    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    align-items: center;

    gap: 60px;
}

.download-content h2 {
    margin-top: 20px;

    font-family: var(--heading-font);

    font-size: clamp(58px, 7vw, 90px);

    font-weight: 900;

    line-height: 0.84;
}

.download-content h2 span {
    display: block;

    color: var(--gold-light);
}

.download-content p {
    max-width: 510px;

    margin-top: 22px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;

    line-height: 1.7;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.store-button {
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 17px;
    border-radius: 9px;
    background: white;
    color: var(--green-dark);
    text-decoration: none;
    transition: 0.25s ease;
}

.store-button:hover {
    transform: translateY(-4px);
    background: var(--gold-light);
}

.store-button i {
    font-size: 28px;
}

.store-button span {
    display: flex;
    flex-direction: column;
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 0.9;
}

.store-button small {
    font-family: "Nunito", sans-serif;
    font-size: 8px;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.download-art {
    position: relative;
    display: flex;
    justify-content: center;
}

.download-art img {
    width: min(450px, 100%);
    border-radius: 25px;
    transform: rotate(3deg);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.3);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #10251a;

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.7fr 1fr 1fr 1fr;

    gap: 50px;

    padding-top: 70px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-links h4 {
    margin-bottom: 17px;

    color: var(--gold-light);

    font-family: var(--heading-font);

    font-size: 20px;

    text-transform: uppercase;
}

.footer-links a {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.55);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-inner {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;
}

.footer-social {
    display: flex;
    gap: 7px;
}

.footer-social a {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.studio-credit {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   VIDEO MODAL
========================================================= */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 12, 7, 0.88);
    backdrop-filter: blur(8px);
}

.video-modal-container {
    position: relative;
    width: min(900px, 100%);
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    background: #101b13;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4);
    z-index: 2;
    transform: translateY(20px) scale(0.96);
    transition: 0.3s ease;
}

.video-modal.open .video-modal-container {
    transform: translateY(0) scale(1);
}

.close-video {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 17px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background:
        linear-gradient(rgba(18, 52, 30, 0.7),
            rgba(18, 52, 30, 0.9)),
        url("../images/gallery/morning-grain-feature.png") center / cover;
}

.video-top-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 14px;
    background: #060a07;
    z-index: 2;
    pointer-events: none;
}

.video-placeholder-icon {
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 24px;
    padding-left: 4px;
}

.video-placeholder h3 {
    margin-top: 20px;
    color: white;
    font-family: var(--heading-font);
    font-size: 38px;
}

.video-placeholder p {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.video-placeholder small {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 10px;
    background: var(--gold);
    color: var(--brown-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

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


/* =========================================================
   RESPONSIVE - 1050px
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .hero-content {
        width: 55%;
    }

    .hero-artwork {
        width: 48%;
        right: -3%;
    }

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

    .about-grid {
        gap: 45px;
    }

}

/* =========================================================
   RESPONSIVE - 800px
========================================================= */
@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, 650px);
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
    }

    .mobile-nav {
        display: flex;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        background: rgba(16, 42, 27, 0.98);
        transition: max-height 0.35s ease;
    }

    .mobile-nav.open {
        max-height: 500px;
    }

    .mobile-nav a {
        padding: 16px 20px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mobile-nav a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--gold-light);
    }


    /* Hero */
    .hero {
        min-height: 850px;
        align-items: flex-start;
        padding-top: 130px;
        background-position: center;
    }

    .hero-content {
        width: min(650px, calc(100% - 30px));
        margin: 0 auto;
        padding-top: 0;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(60px, 14vw, 90px);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-artwork {
    width: 65%;
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
}

    .hero-artwork img {
        transform: rotate(1deg);
    }

    .hero-bottom-fade {
        height: 350px;
    }

    .hero-badge,
    .hero h1,
    .hero-subtitle,
    .hero-description,
    .hero-actions,
    .hero-stores {
        opacity: 0;
        animation: heroReveal 0.8s ease forwards;
    }

    .hero-badge {
        animation-delay: 0.2s;
    }

    .hero h1 {
        animation-delay: 0.35s;
    }

    .hero-subtitle {
        animation-delay: 0.55s;
    }

    .hero-description {
        animation-delay: 0.7s;
    }

    .hero-actions {
        animation-delay: 0.85s;
    }

    .hero-stores {
        animation-delay: 1s;
    }

    @keyframes heroReveal {
        from {
            opacity: 0;
            transform:
                translateY(25px);
        }

        to {
            opacity: 1;
            transform:
                translateY(0);
        }
    }

    /* Stats */

    .stats-container {
        grid-template-columns: 1fr 1fr;
        padding: 25px 0;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .floating-card {
        right: 15px;
    }

    /*========= Screenshots ================*/

    .screenshot-card {
        flex-basis: 220px;
    }

    /* Steps */
    .steps-roadmap {
        max-width: 1200px;
        margin: 70px auto 0;
        display: grid;
        grid-template-columns:
            1fr 100px 1fr 100px 1fr;
        grid-template-rows:
            auto 120px auto;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    /* Download */
    .download-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .download-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .download-buttons {
        justify-content: center;
    }

    .download-art {
        max-width: 450px;
        margin: 0 auto;
    }



    .steps-roadmap {
        max-width: 600px;
        margin: 60px auto 0;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;
    }

    /* Step cards */

    .step-card {
        position: relative;

        width: min(100%, 480px);

        /* Reset desktop grid placement */
        grid-column: auto !important;
        grid-row: auto !important;

        z-index: 2;
    }


    /* Hide desktop horizontal connectors */

    .road-connector {
        display: none;
    }


    /* Hide desktop turning connector */

    .road-turn {
        display: none;
    }


    /* ===============================
       CORRECT MOBILE ORDER
    =============================== */

    .step-plant {
        order: 1;
    }

    .step-grow {
        order: 2;
    }

    .step-harvest {
        order: 3;
    }

    .step-expand {
        order: 4;
    }

    .step-build {
        order: 5;
    }

    .step-town {
        order: 6;
    }


    /* ===============================
       VERTICAL ROAD CONNECTOR
    =============================== */

    .step-card:not(.step-town)::after {
        content: "";

        width: 3px;
        height: 45px;

        position: absolute;

        left: 50%;
        bottom: -45px;

        transform: translateX(-50%);

        background:
            repeating-linear-gradient(
                to bottom,
                var(--gold) 0 8px,
                transparent 8px 16px
            );

        z-index: 1;
    }


    /* Arrow */

    .step-card:not(.step-town)::before {
        content: "↓";

        position: absolute;

        left: 50%;
        bottom: -62px;

        transform: translateX(-50%);

        width: 34px;
        height: 34px;

        display: grid;
        place-items: center;

        border-radius: 50%;

        background: var(--gold);
        color: var(--green-dark);

        font-size: 16px;
        font-weight: 900;

        z-index: 3;

        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.15);
    }


    /* Space for connector */

    .step-card:not(.step-town) {
        margin-bottom: 70px;
    }



    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }
}

/* =========================================================
   RESPONSIVE - 550px
========================================================= */
@media (max-width: 550px) {
    .section {
        padding: 80px 0;
    }

    .nav-container {
        min-height: 68px;
    }

    .brand {
        gap: 9px;
    }

    .brand-icon {
        /* width: 45px;
        height: 45px; */

        border-radius: 7px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text span {
        font-size: 15px;
    }

    /*-------- Hero -----------------*/
    .hero {
        min-height: 900px;
        padding-top: 105px;
        align-items: flex-start;
        overflow: hidden;
    }

    .hero-content {
        width: calc(100% - 30px);
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 5;
    }

    /* Badge */
    .hero-badge {
        margin: 0 auto 20px;
        font-size: 10px;
        padding: 9px 15px;
    }

    /* Main heading */
    .hero h1 {
        font-size: 58px;
        line-height: 0.9;
        letter-spacing: -1px;
    }

    /* Subtitle */
    .hero-subtitle {
        max-width: 340px;
        margin: 25px auto 0;
        font-size: 20px;
        line-height: 1.15;
    }

    /* Description */
    .hero-description {
        max-width: 340px;
        margin: 18px auto 0;
        font-size: 13px;
        line-height: 1.7;
    }

    /* Buttons */
    .hero-actions {
        width: 100%;
        margin-top: 25px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-actions .btn {
        width: min(100%, 340px);
        justify-content: center;
    }

    /* Play Now */
    .hero-actions .btn-primary {
        min-height: 60px;
    }

    /* Trailer */
    .hero-actions .btn-outline {
        min-height: 60px;
    }

    /* Stores */
    .hero-stores {
        margin-top: 25px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .available-text {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .mini-store {
        width: 200px;
        min-height: 48px;
        justify-content: center;
    }

   
    .hero-artwork {
    width: 52%;
    max-width: 205px;
    position: absolute;
    left: -8px;
    right: auto;
    bottom: -5px;
    transform: none;
    z-index: 1;
}

.hero-artwork img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(1deg);
}

    .artwork-glow {
        transform: scale(0.8);
    }

    /* Fade */
    .hero-bottom-fade {
        height: 280px;
        z-index: 2;
    }

    .mini-store {
        width: 180px;
    }

    .hero-artwork {
        width: 92%;
        bottom: 15px;
    }

    /* Stats */
    .stat-item strong {
        font-size: 34px;
    }

    .stat-item span {
        font-size: 9px;
    }

    /* Heading */
    .section-heading h2,
    .about-content h2 {
        font-size: 48px;
    }

    /* About */
    .about-points {
        grid-template-columns: 1fr;
    }

    .floating-card {
        right: 10px;
        bottom: 20px;
    }

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

    .feature-card {
        min-height: auto;
    }

.screenshots-wrapper {
    position: relative;
    width: 100%;
    display: block;
    overflow: visible;
}


/* Video track */

.screenshots-track {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 20px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 20px 0 35px;

    scrollbar-width: none;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    /*
       Keep the active card centered
       inside the mobile screen.
    */
    padding-left: calc((100% - 185px) / 2);
    padding-right: calc((100% - 185px) / 2);
}

.screenshots-track::-webkit-scrollbar {
    display: none;
}

/* Video card */

.screenshot-card {
    flex: 0 0 185px;
    width: 185px;
    padding: 8px;
    border-radius: 22px;
    scroll-snap-align: center;
}


/* Video */
.gameplay-video {
    width: 100%;
    display: block;
    aspect-ratio: 0.57;
    object-fit: cover;
}


/* =====
   MOBILE ARROWS
========= */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green-dark);
    color: white;

    z-index: 10;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Left arrow */

.slider-arrow.prev {
    left: -8px;
}


/* Right arrow */

.slider-arrow.next {
    right: -8px;
}


/* ====
   DOTS
===== */

.slider-dots {
    margin-top: 0;
    gap: 7px;
}

    /* Trailer */
    .trailer {
        min-height: 500px;
    }

    .big-play-button {
        width: 95px;
        height: 95px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Download */
    .download-content h2 {
        font-size: 55px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 200px;
    }



    /* HOW TO PLAY */

.steps-roadmap {
    max-width: 100%;
    margin-top: 45px;
}

.step-card {
    width: 100%;
}

.step-card:not(.step-town) {
    margin-bottom: 65px;
}

.step-card:not(.step-town)::after {
    height: 40px;
    bottom: -40px;
}

.step-card:not(.step-town)::before {
    bottom: -57px;
    width: 32px;
    height: 32px;
    font-size: 14px;
}



    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .studio-credit {
        order: -1;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

/* @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
} */












/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
    min-height: 100vh;
    background:
        linear-gradient(
            180deg,
            #eef1e7 0%,
            #e5ebdd 100%
        );
}


/* ================= HEADER ================= */

.legal-header {
    background: #10251a;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.legal-nav {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    border-radius: 8px;

    background: var(--gold);

    color: var(--brown-dark);
    text-decoration: none;

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    transition: 0.25s ease;
}

.legal-back:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
}


/* ================= CONTENT ================= */

.legal-content {
    padding: 90px 0;
}

.legal-container {
    max-width: 900px;
}


/* ================= HEADING ================= */

.legal-heading {
    text-align: center;

    margin-bottom: 45px;
}

.legal-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.legal-heading h1 {
    margin: 0;

    font-family: var(--heading-font);

    font-size:
        clamp(45px, 7vw, 75px);

    line-height: 0.95;

    color: var(--green-dark);
}

.legal-heading p {
    margin-top: 18px;

    color: #718071;

    font-size: 13px;
}


/* ================= LEGAL CARD ================= */

.legal-card {
    padding: 50px;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 25px 60px rgba(20, 48, 28, 0.12);
}

.legal-card h2 {
    margin:
        40px 0 15px;

    color: var(--green-dark);

    font-family: var(--heading-font);

    font-size: 25px;
}

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

.legal-card p {
    margin: 0 0 15px;

    color: #657064;

    font-size: 15px;

    line-height: 1.8;
}

.legal-card ul {
    margin:
        15px 0 20px;

    padding-left: 22px;
}

.legal-card li {
    margin-bottom: 10px;

    color: #657064;

    font-size: 15px;

    line-height: 1.7;
}

.legal-card a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.legal-card a:hover {
    color: var(--gold);
}


/* ================= FOOTER ================= */

.legal-footer {
    padding: 30px 0;

    background: #10251a;

    color: rgba(255, 255, 255, 0.5);
}

.legal-footer .container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.legal-footer p {
    margin: 0;

    font-size: 11px;
}

.legal-footer div {
    display: flex;
    gap: 25px;
}

.legal-footer a {
    color:
        rgba(255, 255, 255, 0.55);

    text-decoration: none;

    font-size: 12px;

    transition: 0.2s ease;
}

.legal-footer a:hover {
    color: var(--gold);
}


/* =========================================================
   LEGAL PAGE RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .legal-content {
        padding: 60px 0;
    }

    .legal-nav {
        min-height: 75px;
    }

    .legal-card {
        padding: 30px 22px;

        border-radius: 18px;
    }

    .legal-card h2 {
        font-size: 21px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 14px;
    }

}


@media (max-width: 550px) {

    .legal-nav {
        min-height: 70px;
    }

    .legal-back {
        padding: 11px 14px;

        font-size: 10px;
    }

    .legal-back i {
        display: none;
    }

    .legal-heading h1 {
        font-size: 45px;
    }

    .legal-footer .container {
        flex-direction: column;

        text-align: center;
    }

    .legal-footer div {
        gap: 18px;
    }
}


/* =========================================================
   SCREENSHOTS - MOBILE FIX
   ========================================================= */

@media (max-width: 550px) {

    /* Make wrapper full width */
    .screenshots-wrapper {
        position: relative;
        display: block;
        width: 100%;
        overflow: visible;
    }

    /* Full-width scrolling area */
    .screenshots-track {
        width: 100%;
        max-width: 100%;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 20px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;

        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;

        /* Center one 220px card */
        padding: 20px calc((100% - 220px) / 2) 35px;

        box-sizing: border-box;
    }

    .screenshots-track::-webkit-scrollbar {
        display: none;
    }


    /* ===============================
       VIDEO CARD
    =============================== */

    .screenshot-card {
        flex: 0 0 220px;
        width: 220px;

        padding: 8px;

        box-sizing: border-box;

        scroll-snap-align: center;
    }


    /* ===============================
       ARROWS
    =============================== */

    .slider-arrow {
        position: absolute;

        top: 50%;

        width: 40px;
        height: 40px;

        min-width: 40px;
        padding: 0;

        display: grid;
        place-items: center;

        transform: translateY(-50%);

        z-index: 20;
    }

    .slider-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .slider-arrow.prev {
        left: -8px;
    }

    .slider-arrow.next {
        right: -8px;
    }


    /* ===============================
       VIDEO
    =============================== */

    .gameplay-video {
        width: 100%;
        height: auto;

        aspect-ratio: 0.57;

        display: block;

        object-fit: cover;
    }


    /* ===============================
       DOTS
    =============================== */

    .slider-dots {
        margin-top: 0;
    }
}