/*****************************************************
    Global
*****************************************************/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: "Jost", sans-serif;
    --font-family2: "Inter", sans-serif;

    --body-color: #2E2E2E;
    --body-bg-color:#031D30;

    --header-bg-color: none;

    --cta-primary-color: #000000;
    --cta-primary-bg-color: #F5DAA3;
    --cta-primary-border-color: #F5DAA3;

    --cta-secondary-color: #FFFFFF;
    --cta-secondary-bg-color: #052B46;
    --cta-secondary-border-color: #154A6A;

    --offer-title-color: #FFFFFF;
    --offer-description-color: #FFFFFF;

    --coupon-code-color: #FFFFFF;
    --coupon-code-bg-color: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);

    --features-title-color: #FFFFFF;
    --features-color: #FFFFFF;
    --features-bg-color: #052B46;

    --payment-methods-title-color: #FFFFFF;
    --payment-methods-bg-color: #052B46;
    --payment-methods-icons-bg-color: #FFFFFF;

    --terms-and-conditions-color: linear-gradient(180deg, rgba(14, 24, 31, 0) 21.05%, #0E181F 100%);
    --terms-and-conditions-bg-color: transparent;

    --footer-color: #94BAD1;
    --footer-bg-color: #052B46;
}

/*****************************************************
    Body
*****************************************************/
body{
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin:0px;
    padding:0px;
    background:var(--body-bg-color);
    color: var(--body-color);
    overflow-x: hidden;
}


/*****************************************************
    Page container
*****************************************************/
#page-container{
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
}

.screen-container{
    width: 100%;
    height: 100vh;
    display: grid;
    align-items: center;
    align-content: space-between;
}

/*****************************************************
    Header
*****************************************************/
header{
    background: var(--header-bg-color);
    padding: 24px 0px;
    height: 160px;
}

/*****************************************************
    Secondary CTA button
*****************************************************/
.secondary-cta-button {
    position: relative;
    background:var(--cta-secondary-bg-color);
    color: var(--cta-secondary-color);
    border-radius: 99px;
    border: 2px solid #154A6A;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0px 4px 0px 0px #154A6A;
}

.secondary-cta-button:hover {
    color: var(--cta-secondary-color);
    background-color: #154A6A;
    border: 2px solid #94BAD1;
    box-shadow: 0px 4px 0px 0px #94BAD1;
}

/*****************************************************
    Main - hero-jumbotron
*****************************************************/
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    height: calc(100vh - 160px);
    height: 600px;
}
.hero-jumbotron{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    max-width: 641px;

}
.offer-title{
    color: var(--offer-title-color);
    font-weight: 800;
    font-size: 30px;
    font-family: var(--font-family);
    line-height: 130%;
    text-align: center;


    /*
    thank me later:
    https://owumaro.github.io/text-stroke-generator/
    */

    /*
    -webkit-text-stroke: 3px #cc66ff;
    */

}

.offer-description{
    color: var(--offer-description-color);
    font-weight: 800;
    font-size: 60px;
    font-family: var(--font-family);
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.coloredPart {
    color: #F5DAA3;
}

.coupon-code-container{
    width: auto;
    min-width: 200px;
    border-radius: 9999px;
    height: auto;
    padding: 8px 32px;
    background: var(--coupon-code-bg-color);
    color: var(--coupon-code-color);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor:pointer;
    backdrop-filter: blur(18px);
    font-family: var(--font-family);
}
.coupon-code-container .coupon-left{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.coupon-code-container .coupon-left .coupon-title{
    font-size: 12px;
}
.coupon-code-container .coupon-left .coupon-code{
    font-size: 20px;
    font-weight: 900;
}

.coupon-code-container .coupon-right{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.coupon-code-container .coupon-right::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 33px;
    border-radius: 3px;
    border: 1px solid #FFFFFF;
    margin: 0px 11px;
}

.coupon-code-container .coupon-right img{}

/*****************************************************
    Secondary CTA button
*****************************************************/
.cta-container{

}
.primary-cta-button{
    color: var(--cta-primary-color);
    background: var(--cta-primary-bg-color);
    background-color: #F5DAA3;
    font-size: 24px;
    font-weight: 800 !important;
    padding: 12px 24px;
    border: 2px solid #DAAF58;
    border-radius: 99px;
    box-shadow: 0px 4px 0px 0px #DAAF58;
    min-width: 371px;
}

.primary-cta-button:hover{
    color: var(--cta-primary-color);
    background: #F5DAA3;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 4px 0px 0px #FFFFFF;
}

/*****************************************************
    Features
*****************************************************/
.features{
    max-width: 800px;
    margin: 80px auto 0px;
}

.features .feature1, .features .feature2, .features .feature3 {
    margin-right: 15px;
}

/*
body::before{
    content: "";
    background: url(https://res.cloudinary.com/fileid/image/upload/v1753357954/Hotloot%20Casino/Landing%20Page%20Assets/thunder-1.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 754.7231945567372px;
    height: 1011.0320963372569px;
    top: 530px;
    left: 50.27px;
    opacity: 0.3;
    z-index: -1;
}

body::after{
    content: "";
    background: url(https://res.cloudinary.com/fileid/image/upload/v1753357953/Hotloot%20Casino/Landing%20Page%20Assets/thunder-2.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 588px;
    height: 842px;
    top: 1309px;
    right: 0px;
    opacity: 0.3;
    z-index: -1;
    overflow: hidden;
}
*/
.features-title{
    color: var(--features-title-color);
    font-weight: 800;
    font-size: 32px;
    font-family: var(--font-family);
    line-height: 100%;
    text-align: center;
    margin: 25px 0px;
}
.feature {
    background: var(--features-bg-color);
    border: none;
    border-radius: 99px;
    max-width: 800px;
    width: 100%;
    height: 90px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.feature .circle{
    width: 64px;
    height: 64px;
    background: linear-gradient(339.24deg, #B8D1E0 1.88%, #FFFFFF 26.66%);
    font-family: var(--font-family);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    font-size: 34px;
    font-weight: 800;
    margin-right: 22px;
}
.feature .feature-text{
    color: var(--features-color);
    text-transform: capitalize;
    font-weight: bold;
    font-family: var(--font-family2);
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    width: 670px;

}
/*****************************************************
    Payments
*****************************************************/
.payment-methods{
    max-width: 800px;
    margin: 80px auto 0px;
}
.payment-methods-title{
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 32px;
    color: var(--payment-methods-title-color);
    text-align: center;
}
.payment-icons{
    background: var(--payment-methods-bg-color);
    border-radius: 24px;
    padding: 24px;
    margin-top: 8px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-icons img{
    background: var(--payment-methods-icons-bg-color);
    border-radius: 99px;
    width: 98px;
    height: auto;
    margin: 5px;
}

.provider-developers{
    max-width: 800px;
    margin: 80px auto 0px;
}

.providers-subtitle {
    text-align: center;
    line-height: 24px;
    margin: 10px 0 20px 0;
    color: #FFFFFF;
}

/*****************************************************
    Terms and conditions - T&C's
*****************************************************/
.terms-and-conditions{
    max-width: 800px;
    margin: 80px auto 0px;
}

.t-and-c-container{
    width: 100%;
    max-width: 800px;
    font-size: 12px;
    line-height: 16px;
}
/*****************************************************
    Footer
*****************************************************/
footer{
    background: var(--footer-bg-color);
    color: var(--footer-color);
    padding: 24px;
    text-align: center;
}

.footer-text{
    font-size: 12px;
    line-height: 16px;
}

details {
    max-width: 800px;
    margin: 80px auto 0px;
}

details[open] .read-more::after {
    content: attr(data-open);
}

details:not([open]) .read-more::after {
    content: attr(data-close);
    text-decoration: none;
}

summary a {
    font-size: 14px;
    font-weight: 700;
    color: #94BAD1 !important;
    text-decoration: none;
}

details[open] .faded-terms{
    display:none;
}

::marker {
    content: "";
}

.faded-terms {
    height: 80px;
    overflow: hidden;
    mask-image: linear-gradient(0deg, transparent 16px, #001133 80px);
}

summary b {
    font-size: 14px;
    color: #FFFFFF;
}

details p {
    color: #FFFFFF;
}

/*****************************************************
    Media queries
*****************************************************/
@media only screen and (max-width:768px) {
    header{
        height: 80px;
        padding: 20px 20px 0px 20px;
    }

    header .logo{
        height: 56px;
    }

    header .row {
        margin-left: 10px;
        margin-right: 10px;
    }

    .logo-div {
        order: -1;
    }

    #page-container{
        background-size: auto 440px;
    }
    .secondary-cta-button{
        padding: 12px 18px;
        font-size: 14px;
    }

    main{
        height: calc(100vh - 80px);
        height: 340px;
    }
    .hero-jumbotron{
        max-width :410px;
        gap: 10px;
    }

    .offer-title{
        font-size: 16px;
        line-height: 120%;
    }
    .offer-description{
        font-size: 40px;
        line-height: 110%;
    }
    .coupon-code-container{
        height: 60px;
    }
    .features {
        max-width: 600px;
    }
    .features-title{
        font-size: 26px;
        margin: 22px 0px;
    }

    .feature .circle {
        width: 56px;
        height: 56px;
    }
    .feature .feature-text{
        font-size: 22px;
        width: 480px;
    }

    .features .feature1, .features .feature2, .features .feature3 {
        width: 40px;
    }

    .primary-cta-button{
        padding: 16px 40px;
        font-size: 18px;
        box-shadow: none;
    }

    .payment-methods{
        max-width: 600px;
    }
    .payment-methods-title{
        font-size: 26px;
    }
    .payment-icons{
        padding: 24px 80px;
        /* grid-template-columns: repeat(4, auto);
        gap: 10px; */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .payment-icons img{
        padding: 15px;
        min-width: 100px;
        width: auto;
        height: auto;
        margin: 0;
    }

    .provider-developers {
        margin: 16px auto 0px;
        max-width: 328px;
    }

    .providers-subtitle {
        margin: 0px 0px 5px 0px;
        font-size: 14px;
    }

    .terms-and-conditions{
        max-width: 600px;
    }
}

@media only screen and (max-width:768px) {

    #page-container{
        background-size: auto 600px;
    }

    header{
        height: 68px;
        padding: 10px 0px 0px 0px;
    }

    header .logo {
        width: 127px;
        max-width: 127px;
        height: 45px;
    }
    .secondary-cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    main{
        height: calc(100vh - 68px);
        height: 490px;
    }

    .hero-jumbotron{
        max-width :324px;
        gap: 10px;
    }

    .offer-title{
        font-size: 16px;
        line-height: 120%;
        text-shadow: -4px 4px 10px #15293780;

    }
    .offer-description{
        font-size: 32px;
        line-height: 110%;
    }
    .coupon-code-container {
        height: 50px;
        padding: 8px 32px;
        width: auto;
        min-width: 170px;
    }

    .coupon-code-container .coupon-left .coupon-title {
        font-size: 12px;
    }

    .coupon-code-container .coupon-left .coupon-code {
        font-size: 20px;
        font-weight: 900;
    }

    .primary-cta-button {
        min-width: 324px;
        font-size: 24px;
        padding: 12px 24px !important;
        box-shadow: 0px 4px 0px 0px #DAAF58;
    }

    .features {
        max-width: 328px;
        margin: 16px auto 0px;
    }

    .features-title {
        font-size: 24px;
    }

    .feature{
        max-width: 360px;
        height: 75px;
        margin-bottom: 8px;
    }

    .feature .circle {
        margin-right: 10px;
        font-size: 20px;
        width: 42px;
        height: 42px;
    }

    .feature .feature-text {
        font-size: 16px;
        width: 250px;
    }

    .payment-methods {
        max-width: 328px;
        margin: 6px auto 0px;
    }

    .payment-methods-title {
        font-size: 24px;
        margin: 16px 0px 10px 0px;
        line-height: 100%;
    }

    .payment-icons {
        padding: 20px;
    }

    .payment-icons img {
        padding: 5px;
        max-height: 50px;
        min-width: 66px;
    }

    .terms-and-conditions {
        max-width: 328px;
        margin: 50px auto 0px;
    }

    .cta-container {
        bottom: 0;
        position: fixed;
        left: 0%;
        width: 100%;
        padding: 0;
        height: 92px;
        display: inline-block;
        background-color: #031D30;
        z-index: 9999;
    }

    .is-sticky {
        bottom: calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        left: 50%;
        width: calc(100% - 20px);
        transform: translateX(-50%);
        transition: bottom 2s;
    }

    details {
        margin: 14px 10px 0px 10px;
    }

    details p {
        font-size: 12px;
    }

    summary b {
        font-size: 14px;
        color: #FFFFFF;
    }

    summary a {
        font-size: 12px;
    }

    summary div.d-flex {
        align-items: center;
    }

    footer {
         padding: 14px 24px 110px 24px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .payment-methods {
        max-width: 600px;
    }

    .provider-developers {
        max-width: 600px;
    }
}