:root {
    /* Colors */
    --sc-color-bg: #000;
    --sc-color-text: #fff;
    --sc-color-text-muted: #C1C1C1;
    --sc-color-text-terms: #E3E3E3;

    /* Typography */
    --sc-font-primary: "Inter", sans-serif;
    --sc-font-secondary: "Roboto", sans-serif;
    --sc-font-condensed: "Roboto Condensed", sans-serif;

    --sc-font-size-heading: 37px;
    --sc-font-size-subhead: 16px;
    --sc-font-size-label: 14px;
    --sc-font-size-terms: 6px;

    /* Layout */
    --sc-wrapper-max-width: 334px;
    --sc-wrapper-margin-top: 32px;
    --sc-form-max-width: 422px;
    --sc-logo-height: 48px;
    --sc-logo-margin-bottom: 32px;

    /* Animation */
    --sc-rock-angle: 15deg;
    --sc-rock-duration: 3s;
}

/* HubSpot sets iframe height via inline JS — enforce a minimum from the outside */
#hs-form-iframe-0 {
    min-height: 219px !important;
}

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



.navbar {
    display: none;
}

.footer {
    display: none;
}

.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.main-container .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    overflow: hidden;
    overflow-y: visible;
    flex: 1;
}

.nl-center-wrapper{
    width: 100%;
}


.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 23px;
}

.bg-logo {
    max-width: 109px;
    height: auto;
}

.nl-content {
    position: relative;
    width: 100%;
    max-width: 358px;
    padding: 48px 12px 0 12px;
    z-index: 3;
    pointer-events: auto;
}

.brand-offer-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;

    height: 121px;
    margin-bottom: 15px;
}

.text-wrapper {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.7px;
    text-align: center;
    vertical-align: middle;

    color: #ffffff;

}

.brand-offer-text-container img {
    max-height: 105px;
    height: 100%;
    max-width: 334px;
    width: auto
}

.disclaimer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 45px;
    padding: 0 12px 0 12px;
    margin-left: auto;
    margin-right: auto;

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

.dont-sign-up-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dont-sign-up-wrapper p {
    font-family: "Futura PT", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;

    color: #fff;
}

.disclaimer-text-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.disclaimer-text-wrap p,
.disclaimer-text-wrap a,
.disclaimer-text-wrap h1,
.disclaimer-text-wrap h2,
.disclaimer-text-wrap h3,
.disclaimer-text-wrap h4,
.disclaimer-text-wrap h5,
.disclaimer-text-wrap h6,
.disclaimer-text-wrap span {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 6px;
    line-height: 100%;
    text-align: center;

    color: #969797;
}

.disclaimer-text-wrap a {
    text-decoration: underline;
}


.footer-icons-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 358px;
    margin-top: auto;
    margin: auto 16px 15.5px 16px;
    /*flex-wrap: wrap;*/
}

.footer-icons {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
}

.footer-icons img {
    max-width: 88px;
    height: auto;
}

.footer-icons svg {
    max-width: 88px;
    height: auto;
}

.footer-icons a {
    margin: 0 !important;
}


@media (max-width: 490px) {
    #hs-form-iframe-0 {
        width: 85% !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .crm_hbspt-form{
        width: 85% !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .brand-offer-text-container img {
        max-height: unset;
        height: auto;
        max-width: 85%;
        width: auto;
    }

    .brand-offer-text-container {
        height: unset;
    }
}

@media (max-width: 768px) {
    .main {
        max-width: 100%;
    }

}

@media (min-width: 768px) {
    .main-wrapper {
        justify-content: center;
    }

    .footer-icons-wrapper {
        max-width: unset;
    }

    /* disclaimer-container is a sibling of game-icons-container — flow naturally after it */
    .disclaimer-container {
        width: 100%;
        max-width: 334px;
        position: static;
        transform: none;
        margin-top: -130px;
    }

    .nl-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .nl-center-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .nl-content {
        max-width: 382px;
    }
    .main-wrapper{
        padding-bottom: 51px;

    }
}
