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

:root {
    --gold: #f5b91b;
    --gold-light: #ffd85a;
    --gold-dark: #a86f00;

    --black: #030303;
    --dark: #0b0b0b;
    --card: rgba(20, 20, 20, 0.78);

    --white: #ffffff;
    --muted: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--black);
    color: white;
    overflow-x: hidden;
}


/* =========================
   PAGE
========================= */

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(245, 185, 27, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(245, 185, 27, 0.08),
            transparent 30%
        ),
        #030303;
}


/* =========================
   BACKGROUND GLOW
========================= */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.glow-left {
    width: 300px;
    height: 300px;

    left: -180px;
    bottom: 50px;

    background: rgba(255, 180, 0, 0.15);
}

.glow-right {
    width: 300px;
    height: 300px;

    right: -180px;
    top: 100px;

    background: rgba(255, 180, 0, 0.12);
}


/* =========================
   ORBITS
========================= */

.gold-orbit {
    position: absolute;

    width: 650px;
    height: 1100px;

    border: 1px solid rgba(245, 185, 27, 0.25);

    border-radius: 50%;

    pointer-events: none;
}

.orbit-right {
    right: -420px;
    top: 70px;

    transform: rotate(-22deg);

    box-shadow:
        0 0 25px rgba(245, 185, 27, 0.2),
        inset 0 0 25px rgba(245, 185, 27, 0.05);
}

.orbit-left {
    left: -470px;
    bottom: -200px;

    transform: rotate(18deg);

    opacity: .65;
}


/* =========================
   PARTICLES
========================= */

.particles span {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 12px var(--gold);

    animation: float 4s infinite ease-in-out;
}

.particles span:nth-child(1) {
    top: 16%;
    left: 5%;
}

.particles span:nth-child(2) {
    top: 23%;
    left: 13%;

    width: 3px;
    height: 3px;
}

.particles span:nth-child(3) {
    top: 15%;
    right: 9%;
}

.particles span:nth-child(4) {
    top: 35%;
    right: 20%;

    width: 3px;
    height: 3px;
}

.particles span:nth-child(5) {
    bottom: 25%;
    left: 20%;
}

.particles span:nth-child(6) {
    bottom: 15%;
    right: 8%;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}


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

.header {
    width: 100%;

    padding: 30px 4%;

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

    position: relative;
    z-index: 10;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 190px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 700px) {

    .logo img {
        width: 145px;
    }

}


/* FOLLOW */

.follow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.follow span {
    color: #b8b8b8;

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

    margin-right: 5px;
}

.follow a {
    width: 38px;
    height: 38px;

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

    border: 1px solid rgba(245, 185, 27, .65);

    border-radius: 50%;

    color: white;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.follow a:hover {
    background: var(--gold);
    color: black;

    box-shadow:
        0 0 20px rgba(245, 185, 27, .5);

    transform: translateY(-3px);
}


/* =========================
   MAIN
========================= */

.main {
    width: min(1100px, 92%);

    margin: 55px auto 0;

    text-align: center;

    position: relative;
    z-index: 5;
}


/* =========================
   BADGE
========================= */

.coming-badge {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 10px 22px;

    border: 1px solid var(--gold);

    border-radius: 50px;

    color: var(--gold-light);

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

    letter-spacing: 1px;

    background:
        rgba(245, 185, 27, .06);

    box-shadow:
        0 0 20px rgba(245, 185, 27, .12);

    animation: badgeGlow 2.5s infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 10px rgba(245,185,27,.1);
    }

    to {
        box-shadow: 0 0 25px rgba(245,185,27,.35);
    }
}


/* =========================
   TITLE
========================= */

h1 {
    margin-top: 32px;

    display: flex;
    flex-direction: column;

    font-size: clamp(65px, 9vw, 125px);

    line-height: .88;

    font-weight: 900;

    letter-spacing: -5px;

    text-transform: uppercase;
}

h1 .white {
    color: white;

    text-shadow:
        0 5px 25px rgba(255,255,255,.12);
}

h1 .gold {
    margin-top: 10px;

    color: var(--gold-light);

    background:
        linear-gradient(
            180deg,
            #fff0a0 0%,
            #f7c52c 35%,
            #c98500 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(
            0 5px 18px rgba(245,185,27,.25)
        );
}


/* =========================
   INTRO
========================= */

.intro {
    margin: 28px auto 0;

    max-width: 650px;

    color: #b4b4b4;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   COUNTDOWN
========================= */

.countdown {
    margin: 35px auto;

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

    gap: 12px;
}

.time-card {
    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(245,185,27,.28);

    box-shadow:
        inset 0 0 30px rgba(245,185,27,.025),
        0 15px 40px rgba(0,0,0,.4);

    position: relative;

    overflow: hidden;
}

.time-card::after {
    content: "";

    position: absolute;

    width: 55%;
    height: 2px;

    left: 22%;
    bottom: 0;

    background: var(--gold);

    box-shadow:
        0 0 15px var(--gold);
}

.time-card strong {
    font-size: 48px;
    font-weight: 500;

    color: white;
}

.time-card small {
    margin-top: 8px;

    font-size: 10px;

    color: var(--gold);

    letter-spacing: 2px;

    font-weight: 700;
}

.colon {
    font-size: 34px;

    color: var(--gold);

    font-weight: 800;
}


/* =========================
   ROCKET
========================= */

.rocket {
    position: absolute;

    right: -50px;
    top: 610px;

    font-size: 75px;

    transform: rotate(-20deg);

    filter:
        drop-shadow(
            0 0 15px rgba(245,185,27,.8)
        );

    animation:
        rocketFloat 3s infinite ease-in-out;
}

@keyframes rocketFloat {

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

    50% {
        transform: rotate(-20deg) translateY(-15px);
    }
}


/* =========================
   NOTIFY BOX
========================= */

.notify-box {
    width: min(820px, 100%);

    margin: 35px auto 0;

    padding: 28px 35px;

    display: flex;
    align-items: center;

    text-align: left;

    gap: 28px;

    border-radius: 17px;

    border: 1px solid rgba(245,185,27,.3);

    background:
        linear-gradient(
            145deg,
            rgba(35,35,35,.8),
            rgba(10,10,10,.7)
        );

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.4);
}

.notify-icon {
    min-width: 70px;
    height: 70px;

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

    border-radius: 50%;

    border: 1px solid #444;

    color: var(--gold);

    font-size: 35px;

    box-shadow:
        0 0 25px rgba(245,185,27,.1);
}

.notify-content {
    flex: 1;
}

.notify-content h3 {
    font-size: 16px;

    letter-spacing: .5px;
}

.notify-content p {
    margin-top: 7px;

    color: #8e8e8e;

    font-size: 12px;
}


/* FORM */

form {
    margin-top: 17px;

    height: 55px;

    display: flex;

    background: #191919;

    border: 1px solid #292929;

    border-radius: 30px;

    padding: 5px;
}

form input {
    flex: 1;

    border: none;
    outline: none;

    background: transparent;

    color: white;

    padding: 0 20px;

    font-family: inherit;

    font-size: 12px;
}

form input::placeholder {
    color: #666;
}

form button {
    border: none;

    border-radius: 25px;

    padding: 0 30px;

    background:
        linear-gradient(
            135deg,
            #ffe27a,
            #e6a800
        );

    color: #111;

    font-family: inherit;

    font-weight: 800;

    font-size: 11px;

    cursor: pointer;

    transition: .3s;
}

form button:hover {
    transform: scale(1.03);

    box-shadow:
        0 0 25px rgba(245,185,27,.4);
}

form button span {
    margin-left: 8px;
}


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

.features {
    margin: 40px auto 0;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;
}

.feature {
    display: flex;

    align-items: center;

    gap: 13px;

    text-align: left;
}

.feature-icon {
    font-size: 28px;

    filter:
        drop-shadow(
            0 0 10px rgba(245,185,27,.5)
        );
}

.feature h4 {
    font-size: 12px;

    color: white;
}

.feature p {
    margin-top: 5px;

    color: #666;

    font-size: 9px;
}

.divider {
    width: 1px;
    height: 45px;

    background:
        linear-gradient(
            transparent,
            #7c5b13,
            transparent
        );
}


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

footer {
    padding: 40px 20px 30px;

    text-align: center;

    color: #555;

    font-size: 11px;

    position: relative;
    z-index: 5;
}

footer span {
    color: var(--gold);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .main {
        margin-top: 40px;
    }

    .rocket {
        opacity: .3;
        right: -10px;
    }

    .time-card {
        width: 120px;
        height: 120px;
    }

    .time-card strong {
        font-size: 40px;
    }
}


@media (max-width: 700px) {

    .header {
        padding: 20px;
    }

    .logo-text {
        font-size: 17px;
        letter-spacing: 3px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    .follow span {
        display: none;
    }

    .follow {
        gap: 6px;
    }

    .follow a {
        width: 32px;
        height: 32px;
    }

    .main {
        margin-top: 35px;
    }

    h1 {
        font-size: clamp(48px, 14vw, 75px);
        letter-spacing: -3px;
    }

    .intro {
        font-size: 13px;
    }

    .desktop {
        display: none;
    }

    .countdown {
        gap: 5px;
    }

    .time-card {
        width: 75px;
        height: 85px;
    }

    .time-card strong {
        font-size: 27px;
    }

    .time-card small {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .colon {
        font-size: 18px;
    }

    .notify-box {
        padding: 22px 18px;

        flex-direction: column;

        text-align: center;
    }

    .notify-icon {
        width: 55px;
        min-width: 55px;
        height: 55px;
        font-size: 25px;
    }

    form {
        height: auto;

        flex-direction: column;

        border-radius: 15px;

        padding: 6px;
    }

    form input {
        height: 48px;

        text-align: center;
    }

    form button {
        height: 48px;
    }

    .features {
        flex-direction: column;

        align-items: flex-start;

        width: 260px;

        gap: 20px;
    }

    .divider {
        display: none;
    }

    .rocket {
        font-size: 50px;

        top: 610px;
        right: -20px;

        opacity: .25;
    }

    .orbit-right {
        right: -600px;
    }

    .orbit-left {
        left: -600px;
    }
}


@media (max-width: 400px) {

    .coming-badge {
        font-size: 9px;
        padding: 9px 14px;
    }

    h1 {
        font-size: 43px;
    }

    .time-card {
        width: 65px;
        height: 75px;
    }

    .time-card strong {
        font-size: 23px;
    }

    .time-card small {
        font-size: 7px;
    }

    .colon {
        font-size: 15px;
    }
}