* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #070708;
    color: #f5f5f5;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* HEADER */

header {
    height: 72px;
    padding: 0 6%;

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

    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(7, 7, 8, .88);

    border-bottom:
        1px solid rgba(255,255,255,.07);

    backdrop-filter: blur(18px);
}

.logo {
    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: 900;
}

.logo span {
    color: #ff8a24;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #777;
    text-decoration: none;

    font-size: 12px;

    transition: .2s;
}

nav a:hover {
    color: white;
}

.status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #777;

    font-size: 10px;
    letter-spacing: 1px;
}

.status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #31d486;

    box-shadow:
        0 0 12px rgba(49,212,134,.7);
}


/* HERO */

.hero {
    max-width: 1180px;

    margin: auto;

    padding:
        110px 5%
        90px;

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 80px;

    align-items: center;
}

.eyebrow {
    color: #ff8a24;

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

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.hero h1 {
    margin: 0 0 25px;

    font-size:
        clamp(60px, 8vw, 100px);

    line-height: .87;

    letter-spacing: -6px;
}

.hero h1 strong {
    color: #ff8a24;
}

.hero-content > p {
    max-width: 520px;

    color: #85858d;

    font-size: 15px;

    line-height: 1.7;
}

.button {
    display: inline-block;

    margin-top: 15px;

    padding: 14px 22px;

    background: #ff8a24;

    color: #111;

    border-radius: 9px;

    text-decoration: none;

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

    transition: .2s;
}

.button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 35px
        rgba(255,138,36,.25);
}


/* HERO CARD */

.hero-card {
    height: 390px;

    display: flex;
    flex-direction: column;

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

    border-radius: 24px;

    border:
        1px solid rgba(255,138,36,.2);

    background:
        radial-gradient(
            circle,
            rgba(255,138,36,.11),
            transparent 55%
        ),
        #111114;
}

.donut {
    font-size: 90px;

    animation:
        float 3s ease-in-out infinite;

    filter:
        drop-shadow(
            0 15px 35px
            rgba(255,138,36,.3)
        );
}

@keyframes float {
    50% {
        transform:
            translateY(-10px)
            rotate(3deg);
    }
}

.hero-card h2 {
    margin: 20px 0 5px;

    letter-spacing: 4px;
}

.hero-card p {
    color: #666;
    font-size: 12px;
}

.online {
    margin-top: 18px;

    color: #31d486;

    font-size: 9px;

    letter-spacing: 1px;
}


/* SECTIONS */

.section {
    max-width: 1180px;

    margin: auto;

    padding: 70px 5%;
}

.section-heading small {
    color: #ff8a24;

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

    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 8px 0 28px;

    font-size: 38px;

    letter-spacing: -2px;
}


/* STEPS */

.steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    overflow: hidden;

    background: #101012;
}

.step {
    padding: 28px;

    border-right:
        1px solid rgba(255,255,255,.07);
}

.step:last-child {
    border-right: 0;
}

.number {
    color: #ff8a24;

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

    margin-bottom: 35px;
}

.step h3 {
    font-size: 15px;

    margin: 0 0 10px;
}

.step p {
    color: #777;

    font-size: 12px;

    line-height: 1.6;
}


/* SINGLE GAME */

.game-single {
    display: flex;

    align-items: center;

    gap: 45px;

    padding: 45px;

    min-height: 300px;

    border:
        1px solid rgba(255,138,36,.2);

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,138,36,.1),
            transparent 40%
        ),
        #111114;
}

.game-icon {
    width: 150px;
    height: 150px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 25px;

    background: #19191d;

    font-size: 70px;

    box-shadow:
        0 15px 50px
        rgba(0,0,0,.3);
}

.game-info {
    max-width: 650px;
}

.tag {
    color: #ff8a24;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.game-info h3 {
    margin: 10px 0;

    font-size: 36px;

    letter-spacing: -1px;
}

.game-info p {
    color: #777;

    line-height: 1.7;

    font-size: 13px;
}

.game-details {
    display: flex;

    gap: 45px;

    margin-top: 28px;
}

.game-details div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.game-details span {
    color: #555;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}

.game-details strong {
    color: #ddd;

    font-size: 10px;
}


/* NOTICE */

.notice {
    max-width: 1060px;

    margin:
        30px auto 90px;

    padding:
        20px 24px;

    display: flex;

    gap: 18px;

    border:
        1px solid rgba(255,138,36,.15);

    border-radius: 12px;

    background:
        rgba(255,138,36,.04);
}

.notice-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ff8a24;

    color: #111;

    font-weight: 900;
}

.notice strong {
    font-size: 12px;
}

.notice p {
    margin: 5px 0 0;

    color: #777;

    font-size: 11px;

    line-height: 1.6;
}


/* FOOTER */

footer {
    padding:
        35px 6%;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #555;

    font-size: 11px;
}

footer strong {
    color: #aaa;
}


/* MOBILE */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 70px;
    }

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

    .step:nth-child(2) {
        border-right: 0;
    }

    .step:nth-child(1),
    .step:nth-child(2) {
        border-bottom:
            1px solid rgba(255,255,255,.07);
    }

    .game-single {
        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 600px) {

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

    .step {
        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.07);
    }

    .step:last-child {
        border-bottom: 0;
    }

    .game-single {
        padding: 30px;
    }

    .game-icon {
        width: 100px;
        height: 100px;

        font-size: 50px;
    }

    .game-details {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    footer {
        flex-direction: column;
        gap: 10px;
    }
}
