@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #070a08;
    --bg-soft: #0b100d;
    --card: #0e150f;
    --card-2: #111a13;

    --green: #22e878;
    --green-light: #5aff9c;
    --green-dark: #13b85b;

    --green-soft: rgba(34,232,120,0.09);
    --green-border: rgba(34,232,120,0.18);

    --text: #f1f5f2;
    --muted: #7d897f;
    --muted-2: #536057;

    --border: rgba(255,255,255,0.065);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    overflow-x: hidden;

    font-family: "Inter", Arial, sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(34,232,120,0.08),
            transparent 35%
        ),
        var(--bg);
}

body.modal-open {
    overflow: hidden;
}

button,
a {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.noise {
    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    z-index: 999;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}


/* =====================================
   NAVBAR
===================================== */

.navbar {
    position: relative;
    z-index: 50;

    width: min(1180px, calc(100% - 40px));
    height: 76px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 19px;
    font-weight: 900;

    letter-spacing: -0.7px;
}

.logo > span > span {
    color: var(--green);
}

.logo-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--green);
    color: #041008;

    font-size: 17px;
    font-weight: 900;

    box-shadow:
        0 0 25px rgba(34,232,120,0.15);
}

.nav {
    display: flex;
    align-items: center;
    gap: 29px;
}

.nav a {
    color: #78837a;

    font-size: 12px;
    font-weight: 600;

    transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.login-btn,
.signup-btn {
    border-radius: 8px;

    padding: 10px 15px;

    font-size: 11px;
    font-weight: 800;

    transition: 0.2s ease;
}

.login-btn {
    border: 0;

    background: transparent;

    color: #9ca69f;
}

.login-btn:hover {
    color: white;
    background: rgba(255,255,255,0.04);
}

.signup-btn {
    border: 0;

    background: var(--green);
    color: #041008;
}

.signup-btn:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

.menu-btn {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: var(--card);

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 4px;
}

.menu-btn span {
    width: 17px;
    height: 2px;

    border-radius: 2px;

    background: white;
}


/* =====================================
   HERO
===================================== */

.hero {
    position: relative;

    width: min(1180px, calc(100% - 40px));
    min-height: 690px;

    margin: auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 40px;
}

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: 20px;

    border-radius: 50%;

    background: rgba(34,232,120,0.035);

    filter: blur(90px);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;

    padding: 80px 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #62ce8b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.kicker-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px var(--green);
}

.hero h1 {
    max-width: 650px;

    margin-top: 19px;

    font-size: clamp(60px, 7vw, 94px);

    line-height: 0.91;

    letter-spacing: -6px;

    font-weight: 900;
}

.hero h1 span {
    color: var(--green);

    text-shadow:
        0 0 50px rgba(34,232,120,0.12);
}

.hero-content > p {
    max-width: 540px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 30px;

    flex-wrap: wrap;
}

.hero-primary,
.hero-secondary {
    border-radius: 9px;

    padding: 14px 18px;

    font-size: 11px;
    font-weight: 800;

    transition: 0.2s ease;
}

.hero-primary {
    display: flex;
    align-items: center;
    gap: 17px;

    border: 0;

    background: var(--green);
    color: #041008;

    box-shadow:
        0 10px 35px rgba(34,232,120,0.12);
}

.hero-primary:hover {
    background: var(--green-light);

    transform: translateY(-2px);

    box-shadow:
        0 15px 45px rgba(34,232,120,0.18);
}

.hero-primary span {
    font-size: 16px;
}

.hero-secondary {
    border: 1px solid var(--border);

    background: rgba(255,255,255,0.025);

    color: #aab3ac;
}

.hero-secondary:hover {
    color: white;
    background: rgba(255,255,255,0.055);
}

.hero-trust {
    display: flex;

    gap: 17px;

    margin-top: 22px;

    color: #566158;

    font-size: 9px;
    font-weight: 600;

    flex-wrap: wrap;
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.check {
    color: var(--green);
}


/* =====================================
   HERO VISUAL
===================================== */

.hero-visual {
    position: relative;

    min-height: 560px;

    display: grid;
    place-items: center;
}

.visual-glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(34,232,120,0.09);

    filter: blur(70px);

    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.reward-orb {
    position: relative;

    width: 330px;
    height: 330px;

    display: grid;
    place-items: center;
}

.orb-ring {
    position: absolute;

    border: 1px solid rgba(34,232,120,0.13);

    border-radius: 50%;
}

.ring-one {
    width: 330px;
    height: 330px;

    animation: spin 18s linear infinite;
}

.ring-two {
    width: 255px;
    height: 255px;

    border-style: dashed;

    animation: spinReverse 14s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    to {
        transform: rotate(-360deg);
    }
}

.orb-core {
    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border: 1px solid rgba(34,232,120,0.3);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(90,255,156,0.14),
            transparent 45%
        ),
        #0c160f;

    box-shadow:
        0 0 60px rgba(34,232,120,0.09),
        inset 0 0 40px rgba(34,232,120,0.025);
}

.orb-symbol {
    color: var(--green);

    font-size: 43px;
    font-weight: 900;

    letter-spacing: -3px;

    text-shadow:
        0 0 30px rgba(34,232,120,0.25);
}

.orb-core strong {
    margin-top: 3px;

    color: #d8e2db;

    font-size: 9px;
    letter-spacing: 2px;
}

.orb-core span {
    margin-top: 6px;

    color: #526057;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* floating cards */

.float-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px;

    min-width: 160px;

    background: rgba(13,20,15,0.9);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 10px;

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);

    z-index: 4;

    animation: floating 4s ease-in-out infinite;
}

.float-one {
    top: 115px;
    left: 20px;
}

.float-two {
    right: 10px;
    bottom: 125px;

    animation-delay: -1.7s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.float-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    font-size: 8px;
    font-weight: 900;
}

.float-icon.green {
    color: var(--green);
    background: var(--green-soft);
}

.float-icon.purple {
    color: #a8a0ff;
    background: rgba(129,119,255,0.09);
}

.float-card strong,
.float-card small {
    display: block;
}

.float-card strong {
    color: #d4ddd6;

    font-size: 8px;
}

.float-card small {
    margin-top: 3px;

    color: #59645b;

    font-size: 7px;
}

.float-plus {
    margin-left: auto;

    color: var(--green);

    font-size: 12px;
    font-weight: 900;
}


/* popup */

.earn-popup {
    position: absolute;

    right: 30px;
    top: 95px;

    width: 190px;

    padding: 14px;

    background: rgba(11,18,13,0.94);

    border: 1px solid rgba(34,232,120,0.14);

    border-radius: 11px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.4);

    z-index: 4;
}

.popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #536057;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1px;
}

.popup-top i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 8px var(--green);
}

.earn-popup > strong {
    display: block;

    margin-top: 10px;

    color: #dce4de;

    font-size: 9px;
}

.popup-progress {
    height: 4px;

    margin-top: 12px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255,255,255,0.05);
}

.popup-progress span {
    display: block;

    width: 72%;
    height: 100%;

    border-radius: inherit;

    background: var(--green);
}

.earn-popup > small {
    display: block;

    margin-top: 7px;

    color: #4e5a51;

    font-size: 6px;
}

.visual-dots {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px var(--green);
}

.dots-one {
    left: 12%;
    top: 37%;
}

.dots-two {
    right: 15%;
    bottom: 26%;
}


/* =====================================
   QUICK STATS
===================================== */

.quick-stats {
    width: min(1080px, calc(100% - 40px));

    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quick-stat {
    padding: 24px 15px;

    text-align: center;
}

.quick-stat + .quick-stat {
    border-left: 1px solid var(--border);
}

.quick-stat strong {
    display: block;

    color: white;

    font-size: 15px;
}

.quick-stat span {
    display: block;

    margin-top: 5px;

    color: #566158;

    font-size: 8px;
}


/* =====================================
   SHARED SECTIONS
===================================== */

.earn-section,
.game-section,
.rewards-section,
.how-section,
.faq-section {
    width: min(1080px, calc(100% - 40px));

    margin: auto;

    padding: 120px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.section-heading > div {
    max-width: 650px;
}

.section-heading.centered {
    display: block;

    max-width: 620px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.eyebrow {
    color: #57ca85;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 12px;

    font-size: clamp(34px, 4.5vw, 51px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading > p {
    max-width: 360px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}


/* =====================================
   EARN GRID
===================================== */

.earn-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 11px;
}

.earn-card {
    position: relative;

    min-height: 285px;

    overflow: hidden;

    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            transparent 60%
        ),
        #0d130e;

    transition: 0.3s ease;
}

.earn-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -80px;
    bottom: -90px;

    border-radius: 50%;

    background: rgba(34,232,120,0.045);

    filter: blur(20px);

    transition: 0.3s ease;
}

.earn-card:hover {
    transform: translateY(-5px);

    border-color: rgba(34,232,120,0.2);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.25);
}

.earn-card:hover::after {
    transform: scale(1.5);
}

.earn-card.featured {
    border-color: rgba(34,232,120,0.14);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(34,232,120,0.07),
            transparent 40%
        ),
        #0d130e;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.earn-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(34,232,120,0.09);
    border-radius: 11px;

    background: var(--green-soft);
    color: var(--green);

    font-size: 14px;
}

.card-number {
    color: #374138;

    font-size: 9px;
    font-weight: 800;
}

.card-content {
    margin-top: 40px;
}

.card-tag {
    color: #556159;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.card-content h3 {
    margin-top: 7px;

    color: #e1e8e2;

    font-size: 18px;

    letter-spacing: -0.5px;
}

.card-content p {
    max-width: 390px;

    margin-top: 9px;

    color: #68746b;

    font-size: 10px;

    line-height: 1.7;
}

.card-bottom {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,0.045);

    color: #5bd389;

    font-size: 8px;
    font-weight: 800;
}

.card-bottom b {
    font-size: 13px;
}


/* =====================================
   GAME
===================================== */

.game-section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}

.game-visual {
    position: relative;

    min-height: 400px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: #091009;
}

.game-grid {
    position: absolute;
    inset: 0;

    opacity: 0.25;

    background-image:
        linear-gradient(rgba(34,232,120,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,232,120,0.08) 1px, transparent 1px);

    background-size: 35px 35px;

    transform: perspective(400px) rotateX(55deg) scale(1.6);

    transform-origin: center bottom;
}

.game-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(34,232,120,0.12);
}

.circle-one {
    width: 360px;
    height: 360px;
}

.circle-two {
    width: 230px;
    height: 230px;
}

.game-card {
    position: relative;
    z-index: 2;

    width: min(330px, 80%);

    padding: 20px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;

    background: rgba(12,19,13,0.91);

    backdrop-filter: blur(15px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.5);
}

.game-card-header {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.game-logo {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--green);
    color: #041008;

    font-size: 13px;
    font-weight: 900;
}

.game-card-header small,
.game-card-header strong {
    display: block;
}

.game-card-header small {
    color: #4f5b52;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1px;
}

.game-card-header strong {
    margin-top: 4px;

    color: #dbe4dd;

    font-size: 9px;
}

.game-score {
    padding: 25px 0 15px;

    text-align: center;
}

.game-score span {
    display: block;

    color: #536057;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.game-score strong {
    display: block;

    margin-top: 7px;

    color: var(--green);

    font-size: 30px;

    letter-spacing: 4px;
}

.game-bars {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.game-bars > div {
    height: 4px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255,255,255,0.045);
}

.game-bars span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: var(--green);
}

.game-bars > div:nth-child(1) span {
    width: 78%;
}

.game-bars > div:nth-child(2) span {
    width: 52%;
}

.game-bars > div:nth-child(3) span {
    width: 91%;
}

.game-card button {
    width: 100%;

    margin-top: 18px;

    padding: 10px;

    border: 0;
    border-radius: 8px;

    background: var(--green);
    color: #041008;

    font-size: 9px;
    font-weight: 800;
}

.game-content h2 {
    margin-top: 12px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.02;

    letter-spacing: -2.7px;
}

.game-content h2 span {
    display: block;

    color: var(--green);
}

.game-content > p {
    margin-top: 20px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 7px;

    margin-top: 28px;
}

.game-features > div {
    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: rgba(255,255,255,0.018);
}

.game-features span,
.game-features strong,
.game-features small {
    display: block;
}

.game-features span {
    color: #4c5a50;

    font-size: 7px;
    font-weight: 800;
}

.game-features strong {
    margin-top: 13px;

    color: #d4ddd6;

    font-size: 9px;
}

.game-features small {
    margin-top: 4px;

    color: #59645c;

    font-size: 6px;
}


/* =====================================
   REWARDS
===================================== */

.rewards-section {
    padding-top: 40px;
}

.reward-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 10px;
}

.reward-showcase {
    position: relative;

    overflow: hidden;

    min-height: 390px;

    padding: 32px;

    display: flex;
    align-items: center;
    flex-direction: column;

    text-align: center;

    border: 1px solid rgba(34,232,120,0.12);
    border-radius: 14px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(34,232,120,0.11),
            transparent 40%
        ),
        #0c130d;
}

.showcase-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    top: 80px;

    border-radius: 50%;

    background: rgba(34,232,120,0.06);

    filter: blur(50px);
}

.showcase-label {
    position: relative;
    z-index: 1;

    color: #57c985;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 2px;
}

.robux-symbol {
    position: relative;
    z-index: 1;

    width: 105px;
    height: 105px;

    margin-top: 28px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(34,232,120,0.22);
    border-radius: 50%;

    background: rgba(34,232,120,0.06);

    color: var(--green);

    font-size: 27px;
    font-weight: 900;

    box-shadow:
        0 0 45px rgba(34,232,120,0.08);
}

.reward-showcase > strong {
    position: relative;
    z-index: 1;

    margin-top: 23px;

    color: #dce5de;

    font-size: 16px;
}

.reward-showcase > p {
    position: relative;
    z-index: 1;

    max-width: 330px;

    margin-top: 8px;

    color: #68746b;

    font-size: 9px;

    line-height: 1.7;
}

.showcase-line {
    position: relative;
    z-index: 1;

    width: 50px;
    height: 1px;

    margin-top: 22px;

    background: var(--green);
}

.reward-showcase > small {
    position: relative;
    z-index: 1;

    margin-top: 10px;

    color: #48554b;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.reward-side {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.mini-reward {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #0d130e;

    transition: 0.2s ease;
}

.mini-reward:hover {
    transform: translateX(4px);

    border-color: rgba(34,232,120,0.17);
}

.mini-reward-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--green-soft);
    color: var(--green);

    font-size: 11px;
}

.mini-reward div:nth-child(2) {
    flex: 1;
}

.mini-reward strong,
.mini-reward span {
    display: block;
}

.mini-reward strong {
    color: #d4ddd6;

    font-size: 9px;
}

.mini-reward span {
    margin-top: 5px;

    color: #59645c;

    font-size: 7px;
}

.mini-reward > b {
    color: #4e5b51;

    font-size: 13px;
}


/* =====================================
   HOW
===================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}

.step {
    padding: 21px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: #0c120d;

    transition: 0.25s ease;
}

.step:hover {
    transform: translateY(-4px);

    border-color: rgba(34,232,120,0.16);
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-top span {
    color: #4f5c51;

    font-size: 8px;
    font-weight: 900;
}

.step-top div {
    color: var(--green);

    font-size: 12px;
}

.step h3 {
    margin-top: 38px;

    color: #d9e1db;

    font-size: 12px;
}

.step p {
    margin-top: 8px;

    color: #657067;

    font-size: 9px;

    line-height: 1.7;
}


/* =====================================
   FINAL CTA
===================================== */

.final-cta {
    position: relative;

    width: min(1080px, calc(100% - 40px));

    min-height: 330px;

    margin: 30px auto 120px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 50px;

    border: 1px solid rgba(34,232,120,0.17);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(34,232,120,0.12),
            transparent 40%
        ),
        #0c130d;
}

.cta-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    right: 60px;

    border-radius: 50%;

    background: rgba(34,232,120,0.07);

    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content > span {
    color: #58ca85;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.cta-content h2 {
    max-width: 620px;

    margin-top: 12px;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1;

    letter-spacing: -3px;
}

.cta-content h2 strong {
    display: block;

    color: var(--green);
}

.cta-content p {
    margin-top: 14px;

    color: #68746b;

    font-size: 10px;
}

.cta-content button {
    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 13px 17px;

    border: 0;
    border-radius: 8px;

    background: var(--green);
    color: #041008;

    font-size: 9px;
    font-weight: 900;
}

.cta-content button span {
    font-size: 14px;
}

.cta-symbol {
    position: absolute;

    right: 100px;

    color: rgba(34,232,120,0.08);

    font-size: 260px;
    font-weight: 900;

    line-height: 1;
}


/* =====================================
   FAQ
===================================== */

.faq-section {
    padding-top: 20px;
}

.faq {
    max-width: 700px;

    margin: auto;
}

.faq-item {
    width: 100%;

    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #0d130e;

    color: #d5ddd7;

    font-size: 10px;
    font-weight: 700;

    text-align: left;

    transition: 0.2s ease;

    margin-bottom: 5px;
}

.faq-item:hover {
    border-color: rgba(34,232,120,0.15);
}

.faq-item b {
    color: #566258;

    font-size: 17px;

    font-weight: 400;
}

.faq-answer {
    display: none;

    padding: 2px 18px 17px;

    color: #68746b;

    font-size: 9px;

    line-height: 1.8;
}

.faq-answer.open {
    display: block;
}


/* =====================================
   FOOTER
===================================== */

footer {
    width: min(1080px, calc(100% - 40px));

    margin: auto;

    padding: 30px 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 9px;
}

.footer-brand .logo-icon {
    width: 29px;
    height: 29px;

    border-radius: 8px;

    font-size: 12px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #d9e1da;

    font-size: 10px;
}

.footer-brand span {
    margin-top: 3px;

    color: #4f5b52;

    font-size: 7px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a,
footer p {
    color: #4e594f;

    font-size: 8px;
}

.footer-links a:hover {
    color: #9da79f;
}


/* =====================================
   AUTH MODAL
===================================== */

.modal {
    position: fixed;
    inset: 0;

    z-index: 100;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,0.8);

    backdrop-filter: blur(12px);
}

.modal.show {
    display: flex;
}

.modal-box {
    position: relative;

    width: min(400px, 100%);

    padding: 38px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(34,232,120,0.07),
            transparent 45%
        ),
        #101710;

    box-shadow:
        0 30px 100px rgba(0,0,0,0.7);
}

.modal-logo {
    width: 48px;
    height: 48px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--green);
    color: #041008;

    font-size: 20px;
    font-weight: 900;
}

.modal-label {
    color: #58c984;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.modal-box h2 {
    margin-top: 9px;

    font-size: 22px;

    letter-spacing: -1px;
}

.modal-box p {
    margin-top: 9px;

    color: #68746b;

    font-size: 10px;
}

.modal-action {
    width: 100%;

    margin-top: 24px;

    padding: 13px;

    border: 0;
    border-radius: 8px;

    background: var(--green);
    color: #041008;

    font-size: 10px;
    font-weight: 900;
}

.close-modal {
    position: absolute;

    top: 13px;
    right: 14px;

    width: 30px;
    height: 30px;

    border: 0;

    background: transparent;

    color: #5d685f;

    font-size: 22px;
}

.close-modal:hover {
    color: white;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .nav.mobile-open {
        position: absolute;

        top: 68px;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 17px;

        padding: 18px;

        border: 1px solid var(--border);
        border-radius: 11px;

        background: #101610;

        box-shadow:
            0 20px 60px rgba(0,0,0,0.5);
    }

    .menu-btn {
        display: flex;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 70px 0 50px;
    }

    .hero-content {
        padding: 0;

        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .game-section {
        grid-template-columns: 1fr;
    }

    .reward-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .navbar,
    .hero,
    .quick-stats,
    .earn-section,
    .game-section,
    .rewards-section,
    .how-section,
    .faq-section,
    .final-cta,
    footer {
        width: calc(100% - 28px);
    }

    .navbar {
        height: 68px;
    }

    .login-btn {
        display: none;
    }

    .signup-btn {
        padding: 9px 11px;

        font-size: 9px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -4px;
    }

    .hero-content > p {
        font-size: 12px;
    }

    .hero-secondary {
        display: none;
    }

    .hero-trust {
        gap: 10px;

        font-size: 7px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .reward-orb {
        transform: scale(0.75);
    }

    .float-one {
        top: 45px;
        left: 0;
    }

    .float-two {
        right: 0;
        bottom: 40px;
    }

    .earn-popup {
        display: none;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-stat:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .quick-stat:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .earn-section,
    .game-section,
    .rewards-section,
    .how-section,
    .faq-section {
        padding: 80px 0;
    }

    .earn-grid {
        grid-template-columns: 1fr;
    }

    .game-section {
        gap: 45px;
    }

    .game-visual {
        min-height: 330px;
    }

    .game-features {
        grid-template-columns: 1fr;
    }

    .reward-showcase {
        min-height: 330px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .final-cta {
        min-height: 390px;

        padding: 30px;

        margin-bottom: 80px;
    }

    .cta-symbol {
        right: 20px;
        bottom: -30px;

        font-size: 180px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        order: 3;
    }
}


/* =====================================
   UNAVAILABLE PAGE
===================================== */

.unavailable-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 75% 45%, rgba(34,232,120,0.11), transparent 30%),
        radial-gradient(circle at 10% 100%, rgba(34,232,120,0.055), transparent 28%),
        var(--bg);
}

.unavailable-shell {
    width: min(1120px, calc(100% - 48px));
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.unavailable-header {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(34,232,120,0.18);
    border-radius: 99px;
    color: #83a38d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f1b84b;
    box-shadow: 0 0 12px rgba(241,184,75,0.7);
    animation: status-pulse 2s ease-in-out infinite;
}

.unavailable-content {
    flex: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
    padding: 70px 0 60px;
}

.unavailable-copy {
    position: relative;
    z-index: 2;
}

.unavailable-eyebrow {
    color: #62ce8b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.unavailable-copy h1 {
    max-width: 550px;
    margin-top: 21px;
    color: #f1f5f2;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.94;
    letter-spacing: -5px;
}

.unavailable-copy h1 span {
    display: block;
    color: var(--green);
    text-shadow: 0 0 45px rgba(34,232,120,0.13);
}

.unavailable-copy p {
    max-width: 430px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.unavailable-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.unavailable-primary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 17px;
    border-radius: 8px;
    background: var(--green);
    color: #041008;
    font-size: 10px;
    font-weight: 900;
    transition: 0.2s ease;
}

.unavailable-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

.unavailable-primary span {
    font-size: 15px;
}

.unavailable-note {
    color: #566358;
    font-size: 9px;
}

.unavailable-visual {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.availability-core {
    position: relative;
    z-index: 2;
    width: 205px;
    height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(34,232,120,0.3);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, rgba(34,232,120,0.18), #0d160f 68%);
    box-shadow: 0 0 80px rgba(34,232,120,0.1), inset 0 0 35px rgba(34,232,120,0.08);
}

.core-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--green);
    color: #041008;
    font-size: 21px;
    font-weight: 900;
    box-shadow: 0 0 26px rgba(34,232,120,0.25);
}

.availability-core strong {
    margin-top: 9px;
    color: #e9f5eb;
    font-size: 18px;
    letter-spacing: 2px;
}

.availability-core span {
    color: #6ac789;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 2px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(34,232,120,0.14);
    border-radius: 50%;
    transform: rotate(-25deg);
}

.orbit-one {
    width: 350px;
    height: 210px;
    animation: orbit-spin 14s linear infinite;
}

.orbit-two {
    width: 445px;
    height: 290px;
    border-color: rgba(34,232,120,0.08);
    transform: rotate(48deg);
    animation: orbit-spin-reverse 18s linear infinite;
}

.orbit-three {
    width: 285px;
    height: 400px;
    border-color: rgba(34,232,120,0.06);
    transform: rotate(68deg);
}

.signal {
    position: absolute;
    z-index: 3;
    padding: 8px 10px;
    border: 1px solid rgba(34,232,120,0.16);
    border-radius: 6px;
    background: rgba(10,19,12,0.85);
    color: #66bf82;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.2px;
    backdrop-filter: blur(10px);
}

.signal-one {
    top: 92px;
    right: 26px;
}

.signal-two {
    bottom: 90px;
    left: 18px;
    color: #8c8061;
    border-color: rgba(241,184,75,0.15);
}

.unavailable-footer {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #536057;
    font-size: 8px;
}

.unavailable-footer span:first-child {
    color: #a2ada4;
    font-weight: 900;
}

.footer-line {
    width: 28px;
    height: 1px;
    background: rgba(34,232,120,0.35);
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.45; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes orbit-spin {
    from { transform: rotate(-25deg); }
    to { transform: rotate(335deg); }
}

@keyframes orbit-spin-reverse {
    from { transform: rotate(48deg); }
    to { transform: rotate(-312deg); }
}

@media (max-width: 760px) {
    .unavailable-shell {
        width: min(100% - 32px, 560px);
    }

    .unavailable-content {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 65px;
    }

    .unavailable-copy {
        text-align: center;
    }

    .unavailable-copy h1,
    .unavailable-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .unavailable-actions {
        justify-content: center;
    }

    .unavailable-visual {
        min-height: 360px;
        transform: scale(0.82);
    }
}

@media (max-width: 450px) {
    .unavailable-header {
        height: 76px;
    }

    .status-pill {
        padding: 7px;
        font-size: 0;
    }

    .status-dot {
        width: 7px;
        height: 7px;
    }

    .unavailable-copy h1 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .unavailable-copy p {
        font-size: 12px;
    }

    .unavailable-actions {
        flex-direction: column;
        gap: 13px;
    }

    .unavailable-visual {
        min-height: 300px;
        transform: scale(0.68);
        margin: -20px 0;
    }

    .unavailable-footer {
        padding: 18px 0;
    }
}