@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

body {
    background: black;
    color: #fff;
    font-family: 'Courier New', monospace;
}

canvas#c {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

main {
    display: block;
    position: relative;
    z-index: 10;
    width: 100vw;
    padding: 64px 0;
}

@media (max-width: 640px) {
    main {
        padding: 32px 0;
    }
}

.heading, h1, h2, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
}

h3.firstline {
    background: #000;
    display: inline-block;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.firstLine {
    color: #6BFF68;
}

h3 {
    font-family: 'Courier New', monospace;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 20px;
}

h1 {
    font-size: 100px;
    line-height: 90%;
    margin: 12px 0;
    /* text-shadow: 0px 0px 80px rgba(0, 0, 0, 1); */
}

h2 {
    font-size: 80px;
    line-height: 90%;
    margin: 12px 0;
}

h4 {
    font-size: 24px;
    margin: 16px 0;
}

@media (max-width: 1023px) {
    h1 {
        font-size: 64px;
    }
    h2 {
        font-size: 52px;
    }
    h3 {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 16px;
    }
}

.wrap {
    width: 100%;
    padding: 0 30px;
    margin: auto;
}

.mw-1100 {
    max-width: 1100px;
}

.mw-1600 {
    max-width: 1600px;
}

/* panel */
.panel {
    background: #000;
    padding: 32px;
    margin: 32px 0 0;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
}
.panel p {
    margin: 16px auto 0;
    max-width: 800px;
}
.panel .button {
    margin-top: 16px;
}
.panel {
    font-size: 14px;
}
.panel .important {
    color: #FF86AE;
}
.panel strong {
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}
.panel .days {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: auto;
    gap: 16px;
}
.panel .days > * {
    margin: 0;
    min-width: 240px;
}
@media (max-width: 1023px) {
    .panel .days {
        flex-direction: column;
    }
}

.event-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 20px;
    margin: 16px 0;
    color: #6BFF68;
}

.event-info > * {
    flex: 1 1 0px;
}

@media (max-width: 640px) {
    .event-info {
        font-size: 16px;
        gap: 8px;
        flex-direction: column;
    }
}

/* logo */
.logo {
    text-align: center;
    color: #fff;
    background: radial-gradient(50% 50.00% at 50% 50.00%, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.logo span {
    display: block;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Courier New', monospace;
    font-weight: normal;
    font-size: 16.5px;
    line-height: 100%;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    text-transform: uppercase;
    margin: 0;
}
.logo strong {
    display: block;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 150px #FFF068, 0px 0px 100px #6BFF68, 0px 0px 40px #6BFF68;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 68.25px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin-top: -2px;
}
.logo em {
    display: block;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Courier New', monospace;
    font-weight: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    text-transform: uppercase;
    margin: -8px 0 0;
    font-style: normal;
}

/* hero */
.hero {
    text-align: center;
}

/* button */
.button {
    background: #6BFF68;
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    display: inline-block;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    line-height: 16px;
    margin: 32px 0 0;
}

/* video */
.video {
    max-width: 1100px;
    margin: 32px auto;
}

.actions {
    max-width: 1100px;
    margin: 0 auto 32px;
    background: #000;
    padding: 32px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* cta wrapper */
#cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    flex-wrap: wrap;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 24px;
}
#cta-wrapper strong {
    font-size: 14px;
    display: block;
    color: #fff;
}
#cta-wrapper > span {
    display: block;
    font-size: 22px;
    font-weight: bold;
}
#cta-wrapper > span em {
    font-style: normal;
    font-size: 14px;
    opacity: 0.6;
    line-height: 80%;
}
#cta-wrapper .price {
    text-align: left;
    font-size: 40px;
    font-weight: normal;
}
#cta-wrapper .price > span {
    display: block;
    line-height: 48px;
    letter-spacing: -0.02em;
}
#cta-wrapper .cta-button {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: flex-end;
    align-content: flex-end;
    text-align: right;
    gap: 24px;
}
#cta-wrapper .fomo {
    color: #FF86AE;
    margin: 0;
}
#cta-wrapper .cta-button .button {
    /* width: 100%; */
}

.info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #000;
    border-bottom: none;
    text-align: left;
    gap: 32px;
}
.info span {
    flex-grow: 1;
    flex-basis: 0;
}
.info strong {
    display: block;
}

.cta-terms {
    font-size: 12px;
    margin: 32px auto;
    max-width: 640px;
    opacity: 0.75;
}
.cta-terms a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    margin: 0 16px;
}

/* modal */
.iti--container {
    color: #080808;
}
.modal {
    display: none;
    background: rgba(0,0,0,0.9);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    margin: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.modal-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.modal-inner {
    display: block;
    max-height: 100%;
    overflow: auto;
    max-height: 100%;
    overflow: auto;
    width: 100%;
    max-width: 540px;
    background: #fff;
    color: #141414;
    border-radius: 32px;
    z-index: 2;
    position: relative;
}
@media (min-width: 768px) {
    .modal-inner {
        padding: 60px;
    }
}
@media (max-width: 767px) {
    .modal-inner {
        padding: 32px;
    }
}
body.modal-open .modal {
    display: flex;
}

/* typform-inline */
.typeform-inline {
    margin: 32px auto 16px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 100px #000;
}

/* form */
form {
    text-align: left;
    display: block;
}
form h2 {
    margin-bottom: 0;
    text-align: center;
    font-size: 48px;
}
form p {
    text-align: center;
}
form .row {
    position: relative;
    z-index: 100;
}
label {
    display: block;
    font-size: 16px;
    font-weight: 500;
}
input[type="text"], 
input[type="email"],
input[type="tel"] {
    width: 100%;
    background: transparent;
    color: rgba(24, 26, 28, 0.9);
    border: 2px solid rgba(24, 26, 28, 0.15);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    padding: 14px 10px 12px;
    margin: 0.5em 0 0.75em;
    outline: 0;
}
.iti--allow-dropdown {
    margin: 0.5em 0 0.75em;
    width: 100%;
}
input[type="submit"] {
    appearance: none;
    border: none;
    display: block;
    width: 100%;
    margin-top: 0.5em;
    cursor: pointer;
}
    @media (min-width: 640px) {
        form > p {
            margin-bottom: 32px;
        }
    }
    @media (max-width: 639px) {
        form > p {
            margin-bottom: 24px;
        }
    }