/* Fonts */
@font-face {
    font-family: 'MonumentExtended-Ultrabold';
    src: url('assets/fonts/MonumentExtended-Ultrabold.otf');
    font-display: swap;
}

@font-face {
    font-family: 'MonumentExtended-Regular';
    src: url('assets/fonts/MonumentExtended-Regular.otf');
    font-display: swap;
}

/* body */

:root {
    --primary-color: #D9291B;
}

body {
    overflow-x: hidden;
    font-family: 'MonumentExtended-Regular', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #070500;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body>* {
    z-index: 1;
}

.bold {
    font-family: 'MonumentExtended-Ultrabold', sans-serif;
}

.navbar {
    padding: 25px;
    background-color: #0E0A00;
}

.navbar > * > * {
    z-index: 10;
}

.navbar .title {
    font-size: 24px;
    color: var(--primary-color);
}

.navbar .links {
    float: right;
    display: flex;

    gap: 30px;
    margin-top: -10px;

    align-items: center;
}

/* button */

button {
    border-radius: 12px;
    height: 50px;

    background: linear-gradient(180deg, #F05600 0%, #EE0000 100%);
    color: white;

    padding: 18px 23.3px 14.4px 23.4px;
    box-shadow: inset 0 0 10px #f8a100;
    border: 1px solid rgba(0, 0, 0, 0.2);

    font-family: "MonumentExtended-Ultrabold", sans-serif;

    cursor: pointer;
}

/* decorations */

.decorations {
    position: absolute;
}

.decorations>* {
    position: absolute;
}

.ellipse-3 {
    z-index: 0;

    width: 1002.7px;
    height: 908.1px;
    margin: 0 382.5px 258.9px 54.8px;

    transform: rotate(-100.89deg);

    opacity: 0.15;

    filter: blur(180px);
    border-style: solid;
    border-width: 100px;
    border-image-source: linear-gradient(189deg, #eb370b 41%, rgba(212, 41, 82, 0) 0%);
    border-image-slice: 1;
}

.ellipse-4 {
    left: calc(50vw - 400px);
    top: -250px;

    width: 1002.7px;
    height: 916.3px;
    margin: 0 54.7px 250.7px 382.6px;

    transform: rotate(-170.89deg);

    opacity: 0.15;

    filter: blur(180px);
    border-style: solid;
    border-width: 100px;
    border-image-source: linear-gradient(189deg, #edaf06 87%, rgba(212, 41, 82, 0) 1%);
    border-image-slice: 1;
}

#decal-1 {
    top: 120px;
    right: calc(-50vw - 1160px);
}

#decal-2 {
    top: 1500px;
    right: calc(-50vw - 500px);
}

/* content */

.content {
    width: calc(100% - 40px);
    position: absolute;
    display: flex;
    flex-direction: column;

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

    margin: 0 20px;
    margin-top: 80px;

    padding-bottom: 200px;
}

/* information */

.ca {
    border: solid 0.9px rgba(255, 255, 255, 0.2);
    background-color: rgba(239, 157, 0, 0.1);

    opacity: 0.35;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 427px;
}

.title {
    border-image-source: linear-gradient(to bottom, #f9804d, #e19134);
    border-image-slice: 1;
    background-image: linear-gradient(to bottom, #f00e00, #ee8f00);

    font-size: 64px;
    font-weight: 800;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    margin: 21px 0;
}

.text {
    max-width: 961px;
    font-size: 22px;
}

.actions {
    margin-bottom: 40px;
}

#view-stream {
    background-image: linear-gradient(to bottom, #f0bb00, #ee7200), linear-gradient(to bottom, #f99f4d, #e19134);
    border-color: #f99f4d;
}

#countdown {
    color: #ee0a00;
    transition-duration: 0.6s;
}

#countdown.idle {
    opacity: 0;
    filter: blur(5px);
    transform: scaleX(1.5) scaleY(0.5) rotateY(90deg);
}

.man {
    position: relative;
    margin-top: 20px;
    width: 939px;
    height: 528px;

    border-radius: 25px;
    background-image: linear-gradient(to bottom, #f05600, rgba(238, 0, 0, 0.25));
    overflow: hidden;

    padding: 1px;
}

.man img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
    border-radius: 25px;
}

.man::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 50%);

    pointer-events: none;
    /* Allow clicks to pass through the pseudo-element */
}

/* roadmap */

.roadmap {
    margin-top: calc(110px - 21px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stages {
    position: relative;
    margin-top: 50px;

    width: calc(100% + 180px);
    display: flex;
    justify-content: space-between;

    margin-right: calc(208px / 2);
    transition-duration: 1s;
}

.stages img {
    position: absolute;
    width: 1300px;
    top: 100px;
}

fact,
stage {
    width: 200px;
    height: 257px;

    padding: 13px;
    text-align: left;

    backdrop-filter: blur(30px);
    box-shadow: 0 0 250px 0 #000;
    border: solid 1px rgba(255, 255, 255, 0.2);
    background-color: rgba(122, 80, 0, 0.1);
    border-radius: 15px;
}

stage {
    padding-top: 18px;
}

stage h {
    font-size: 20px;
}

stage p {
    margin-top: 10px;
    font-size: 10px;
}

stage[nr="1"] {
    background-image: linear-gradient(to bottom, #f0bb00, #ee7200), linear-gradient(to bottom, #f05600, #e00), linear-gradient(to bottom, #f99f4d, #e19134);
}

stage[nr="1"] {
    margin-top: 65px;
}

stage[nr="2"] {
    margin-top: calc(83px + 65px);
}

stage[nr="3"] {
    margin-top: calc(41px + 65px);
}

stage[nr="4"] {
    margin-top: 0;
}

/* fun facts */

.fun-facts {
    margin-top: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 1060px;
    width: 100%;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;

    width: 100%;
}

.answers div {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.answers div button {
    width: 45px;
    height: 45px;

    padding: 0;
    border: none;
}

.answers div question {
    padding: 13px;
    text-align: left;

    backdrop-filter: blur(30px);
    box-shadow: 0 0 250px 0 #000;
    border: solid 1px rgba(255, 255, 255, 0.2);
    background-color: rgba(122, 80, 0, 0.1);
    border-radius: 15px;

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

    width: 100%;
}

.answers div answer {
    margin: 0 15px;
    text-align: left;
    background-color: rgba(122, 80, 0, 0.1);
    border-radius: 10px;

    font-size: x-small;

    height: 0px;
    padding: 0px 20px;

    display: flex;

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

    overflow-y: hidden;
    transition-duration: 0.5s;

    line-height: 150%;

    filter: blur(5px);
    opacity: 0;
}

.answers div answer.visible {
    opacity: 1;
    filter: blur(0px);
    height: 100px;
    padding: 20px;

    font-size: inherit;
}

/* hamburger */

.hamburger {
    display: none;
}

@media screen and (max-width: 1400px) {
    .stages {
        scale: 0.9;
    }
}

@media screen and (max-width: 1275px) {
    .stages {
        scale: 0.8;
    }
}

@media screen and (max-width: 1100px) {
    .stages {
        scale: 0.7;
    }
}

@media screen and (max-width: 992px) {
    body {
        font-size: small;
    }

    .links button {
        padding: 10px;
        height: 35px;
    }

    .ca {
        font-size: 2vw;
        padding-bottom: 7px;
    }

    .text {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .title {
        font-size: 50px;
    }

    .man {
        width: auto;
        height: auto;

        margin-left: 20px;
        margin-right: 20px;
    }

    /* roadmap */

    .roadmap {
        margin-top: 20px;
    }

    .stages {
        position: relative;
        margin-top: 0;

        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        align-items: center;

        scale: 0.8 !important;

        margin-top: -140px;

        overflow-x: visible;
    }

    .stages img {
        transform: rotate(90deg);
        top: 600px;
        left: calc(50vw - 620px);
    }

    stage[nr="1"] {
        margin-left: 100px;
        margin-top: 45px;
    }

    stage[nr="2"] {
        margin-top: 100px;
        margin-right: 220px;
    }

    stage[nr="3"] {
        margin-top: 100px;
        margin-left: 200px;
    }

    stage[nr="4"] {
        margin-top: 100px;
    }

    /* fun facts */

    .fun-facts {
        margin-top: -100px;
    }

    fact[nr="1"] {
        font-size: 10px;
    }

    .content {
        padding-bottom: 20px;
    }

    /* hamburger */

    .hamburger {
        margin-top: 4px;
        display: unset;
    }

    .links:not(.active) > *:not(.hamburger.real) {
        display: none;
    }

    .links.active .hamburger.real {
        display: none;
    }

    .links.active {
        position: fixed;
        left: 0;
        top: 0;

        width: 100vw;
        height: 100vh;

        backdrop-filter: blur(20px);
        background-color: rgba(0, 0, 0, 0.8);

        z-index: 20;

        display: flex;
        flex-direction: column;

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

        user-select: none;

        padding-bottom: 100px;
    }

    .nmf {
        display: none;
        visibility: hidden;
    }
}