@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
    --black: #000000;
    --background: #080808;
    --card: #111111;
    --card-hover: #151515;
    --border: #242424;
    --border-light: #303030;

    --white: #ffffff;
    --gray: #8a8a8a;
    --gray-light: #b8b8b8;

    --radius: 12px;
    --radius-small: 9px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--white);

    font-family:
        "Nunito",
        "Gotham",
        "Arial",
        sans-serif;

    font-weight: 600;
    min-height: 100vh;
}


/* NAVBAR */

.navbar {
    height: 70px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(0, 0, 0, 0.96);

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 42px;
}

.logo {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.logo span {
    color: #aaa;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: #777;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.18s;
}

nav a:hover,
nav a.active {
    color: white;
}


/* BUTTONS */

.nav-right {
    display: flex;
    gap: 8px;
}

.btn {
    border: 1px solid var(--border-light);

    border-radius: var(--radius-small);

    padding: 10px 17px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.18s,
        border 0.18s,
        transform 0.18s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-dark {
    background: #111;
    color: white;
}

.btn-dark:hover {
    background: #181818;
}

.btn-white {
    background: white;
    color: black;
    border-color: white;
}

.btn-white:hover {
    background: #dedede;
}

.btn-large {
    padding: 13px 22px;
}


/* HERO */

.hero {
    min-height: 610px;

    display: flex;
    align-items: center;

    padding: 90px 10%;

    border-bottom: 1px solid var(--border);
}

.hero-content {
    max-width: 700px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 11px;

    border: 1px solid var(--border);

    border-radius: 999px;

    color: #888;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: #777;

    border-radius: 50%;
}

h1 {
    margin-top: 24px;

    font-size: clamp(52px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 900;
}

h1 span {
    color: #777;
}

.hero p {
    max-width: 520px;

    margin-top: 25px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 9px;

    margin-top: 30px;
}

/* SECTIONS */

.section {
    padding: 95px 10%;

    border-bottom: 1px solid var(--border);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 35px;
}

.section-number {
    color: #555;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
}

.section-header h2 {
    margin-top: 7px;

    font-size: 34px;
    font-weight: 900;

    letter-spacing: -1px;
}

.section-header p {
    color: #666;

    font-size: 13px;
}


/* EARN CARDS */

.earn-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.earn-card {
    position: relative;

    min-height: 210px;

    padding: 25px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: 0.2s;
}

.earn-card:hover {
    background: var(--card-hover);

    border-color: #333;

    transform: translateY(-2px);
}

.card-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1b1b1b;

    border: 1px solid #292929;

    border-radius: 10px;

    font-size: 16px;
}

.earn-card h3 {
    margin-top: 35px;

    font-size: 17px;
    font-weight: 900;
}

.earn-card p {
    margin-top: 8px;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}

.arrow {
    position: absolute;

    right: 22px;
    bottom: 20px;

    color: #555;

    font-size: 18px;
}


/* STEPS */

.steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.step {
    padding: 28px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.step > span {
    color: #555;

    font-size: 12px;
    font-weight: 900;
}

.step h3 {
    margin-top: 35px;

    font-size: 17px;
    font-weight: 900;
}

.step p {
    margin-top: 9px;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}


/* CTA */

.cta {
    padding: 75px 10%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.cta h2 {
    margin-top: 7px;

    font-size: 36px;
    font-weight: 900;
}

.cta p {
    margin-top: 8px;

    color: #777;

    font-size: 13px;
}


/* FOOTER */

footer {
    padding: 30px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #555;

    font-size: 12px;
}

footer .logo {
    color: white;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    nav {
        display: none;
    }

    .navbar {
        padding: 0 5%;
    }

    .hero {
        padding: 75px 7%;
    }

    .section {
        padding: 70px 7%;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .earn-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section-header {
        display: block;
    }

    .section-header p {
        margin-top: 10px;
    }

    .cta {
        display: block;
    }

    .cta .btn {
        margin-top: 25px;
    }

    h1 {
        letter-spacing: -3px;
    }
}


@media (max-width: 500px) {

    .nav-right .btn-dark {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 12px;
    }
}
.utm-warning {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #080808;

    z-index: 999999;

    padding: 20px;

    font-family:
        "Nunito",
        "Gotham",
        Arial,
        sans-serif;
}

.utm-box {
    width: 100%;
    max-width: 430px;

    padding: 35px;

    text-align: center;

    background: #111;

    border: 1px solid #292929;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.utm-logo {
    font-size: 21px;
    font-weight: 900;
}

.utm-logo span {
    color: #888;
}

.utm-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 28px auto 18px;

    border: 1px solid #444;
    border-radius: 50%;

    color: #fff;

    font-size: 22px;
    font-weight: 900;
}

.utm-box h1 {
    font-size: 26px;
    letter-spacing: -1px;
}

.utm-box p {
    margin-top: 10px;

    color: #888;

    font-size: 13px;
    line-height: 1.6;
}

.utm-box .utm-small {
    color: #555;
    font-size: 12px;
}

.utm-loader {
    width: 100%;
    height: 4px;

    margin-top: 28px;

    overflow: hidden;

    background: #222;

    border-radius: 999px;
}

.utm-progress {
    width: 100%;
    height: 100%;

    background: #fff;

    transform-origin: left;

    animation: utmProgress 40s linear forwards;
}

@keyframes utmProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

.utm-countdown {
    margin-top: 15px;

    color: #666;

    font-size: 12px;
}

.utm-countdown strong {
    color: #fff;
}

.utm-return {
    display: inline-block;

    margin-top: 22px;

    padding: 11px 18px;

    background: #fff;
    color: #000;

    border: 1px solid #fff;
    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 900;

    transition: 0.2s;
}

.utm-return:hover {
    background: #ddd;
}
.utm-box {
    width: 100%;
    max-width: 430px;

    padding: 35px;

    text-align: center;

    background: #111;

    border: 1px solid #292929;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.utm-logo {
    font-size: 21px;
    font-weight: 900;
}

.utm-logo span {
    color: #888;
}

.utm-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 28px auto 18px;

    border: 1px solid #444;
    border-radius: 50%;

    color: #fff;

    font-size: 22px;
    font-weight: 900;
}

.utm-box h1 {
    font-size: 26px;
    letter-spacing: -1px;
}

.utm-box p {
    margin-top: 10px;

    color: #888;

    font-size: 13px;
    line-height: 1.6;
}

.utm-box .utm-small {
    color: #555;
    font-size: 12px;
}

.utm-loader {
    width: 100%;
    height: 4px;

    margin-top: 28px;

    overflow: hidden;

    background: #222;

    border-radius: 999px;
}

.utm-progress {
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: left center;

    animation-name: utmProgress;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes utmProgress {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

.utm-countdown {
    margin-top: 15px;

    color: #666;

    font-size: 12px;
}

.utm-countdown strong {
    color: #fff;
}

@keyframes utmProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}
.utm-return {
    display: inline-block;

    margin-top: 22px;

    padding: 11px 18px;

    background: #fff;
    color: #000;

    border: 1px solid #fff;
    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 900;

    transition: 0.2s;
}

.utm-return:hover {
    background: #ddd;
}
/* ==========================================
   FULLONRBX MAINTENANCE — RED
   ========================================== */

.maintenance-screen {
    position: fixed;
    inset: 0;

    z-index: 999999999;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            #260909 0%,
            #100606 35%,
            #070707 70%,
            #040404 100%
        );

    color: #fff;

    font-family:
        "Nunito",
        "Gotham",
        "Inter",
        Arial,
        sans-serif;
}

.maintenance-grid {
    position: absolute;
    inset: 0;

    opacity: 0.13;

    background-image:
        linear-gradient(#ff3333 1px, transparent 1px),
        linear-gradient(90deg, #ff3333 1px, transparent 1px);

    background-size: 55px 55px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 0%,
            transparent 75%
        );
}

.maintenance-container {
    position: relative;

    width: min(600px, calc(100% - 40px));

    text-align: center;
}

.maintenance-logo {
    margin-bottom: 24px;

    font-size: 21px;
    font-weight: 950;

    letter-spacing: -0.7px;
}

.maintenance-logo span {
    color: #ff3b3b;
}

.maintenance-status {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    background: rgba(255, 35, 35, 0.06);

    border: 1px solid #4a1c1c;

    border-radius: 999px;

    color: #ff6666;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff3030;

    box-shadow:
        0 0 0 4px rgba(255, 30, 30, 0.08),
        0 0 14px rgba(255, 30, 30, 0.5);

    animation: maintenancePulse 2s infinite;
}

.maintenance-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 32px auto 25px;

    background:
        linear-gradient(
            145deg,
            #241010,
            #100707
        );

    border: 1px solid #5a2020;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(255, 30, 30, 0.08),
        inset 0 1px 0 rgba(255, 80, 80, 0.05);
}

.maintenance-icon span {
    color: #ff3b3b;

    font-size: 27px;

    filter: grayscale(0);

    text-shadow:
        0 0 18px rgba(255, 40, 40, 0.45);
}

.maintenance-container h1 {
    margin: 0;

    font-size: clamp(38px, 6vw, 64px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 950;
}

.maintenance-container h1 span {
    color: #ff3b3b;

    text-shadow:
        0 0 30px rgba(255, 30, 30, 0.12);
}

.maintenance-description {
    max-width: 470px;

    margin: 22px auto 0;

    color: #9d7373;

    font-size: 14px;

    line-height: 1.7;
}

.maintenance-card {
    width: min(420px, 100%);

    margin: 30px auto 0;

    padding: 17px 19px;

    background: rgba(22, 9, 9, 0.88);

    border: 1px solid #3d1818;

    border-radius: 12px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}

.maintenance-card-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #775555;

    font-size: 12px;

    text-align: left;
}

.maintenance-card-row strong {
    display: flex;

    align-items: center;
    gap: 7px;

    color: #ff7777;

    font-size: 12px;
}

.maintenance-card-row strong i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff3030;

    box-shadow:
        0 0 10px rgba(255, 30, 30, 0.5);
}

.maintenance-divider {
    height: 1px;

    margin: 14px 0;

    background: #301515;
}

.maintenance-message {
    margin-top: 25px;

    color: #c55d5d;

    font-size: 12px;

    font-weight: 700;
}

.maintenance-footer {
    display: flex;

    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 30px;

    color: #633333;

    font-size: 10px;

    letter-spacing: 0.5px;
}

.maintenance-footer span {
    color: #351515;
}

@keyframes maintenancePulse {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}

@media (max-width: 600px) {

    .maintenance-container {
        width: calc(100% - 30px);
    }

    .maintenance-container h1 {
        letter-spacing: -2px;
    }

    .maintenance-description {
        font-size: 13px;
    }

    .maintenance-card {
        padding: 15px;
    }

}
.maintenance-timer {
    margin-top: 16px;

    color: #633333;

    font-size: 11px;
}

.maintenance-timer strong {
    margin-left: 4px;

    color: #ff5555;

    font-variant-numeric: tabular-nums;
}