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

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

    --body-color:#000000;
    --body-bg-color:#ffffff;

    --header-bg-color: linear-gradient(180deg, #23113B 0%, rgba(35, 17, 59, 0) 100%);

    --cta-primary-color: #FFFFFF;
    --cta-primary-bg-color: #FF3399;
    --cta-primary-border-color:  #FF3399;

    --cta-secondary-color: #FFFFFF;
    --cta-secondary-bg-color: #333040;
    --cta-secondary-border-color: #464356;

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

    --coupon-code-color: #FFFFFF;
    --coupon-code-bg-color: linear-gradient(180deg, rgba(254, 57, 141, 0.5) 0%, rgba(204, 102, 255, 0.5) 100%);

    --features-title-color:#000000;
    --features-color: #FFFFFF;
    --features-bg-color: #AD48DF;

    --payment-methods-title-color: #000000;
    --payment-methods-bg-color: #B9B4D266;
    --payment-methods-icons-bg-color: #FFFFFF;

    --terms-and-conditions-color: #000000;
    --terms-and-conditions-bg-color:transparent;

    --footer-color:#B9B4D2;
    --footer-bg-coolor:#1B1924;
}

/*****************************************************
    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);
}


/*****************************************************
    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{
    background:var(--cta-secondary-bg-color);
    color: var(--cta-secondary-color);
    border: 1px solid var(--cta-secondary-border-color);
    border-radius: 99px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 20px;
}

.secondary-cta-button:hover{
    background:var(--cta-secondary-bg-color);
    color: var(--cta-secondary-color);
    border: 1px solid var(--cta-secondary-border-color);
}

/*****************************************************
    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: 700;
    font-size: 28px;
    line-height: 110%;
    text-align: center;

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

    text-shadow: #24222D -4px 4px 0px;

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

}
.offer-description{
    color: var(--offer-description-color);
    font-weight: 900;
    font-style: Italic;
    font-size: 78px;
    line-height: 90%;
    text-align: center;
    text-shadow: #24222D -10px 2px 0px;
    text-transform: uppercase;

}

.coupon-code-container{
    width: 200px;
    border-radius: 99px;
    height: auto;
    padding: 10px;
    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;
}
.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);
    padding: 20px 40px;
    border-radius: 300px;
    min-width: 371px;
}

.primary-cta-button:hover{
    color: var(--cta-primary-color);
    background: var(--cta-primary-bg-color);
}

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

/*
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;
    line-height: 100%;
    text-align: center;
    margin: 25px 0px;
}
.feature {
    background: var(--features-bg-color);
    border-radius: 99px;
    padding: 16px;
    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: #FFFFFF;
    font-family: "Montserrat";
    color: var(--features-bg-color);
    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-weight: 700;
    font-size: 26px;
    line-height: 120%;
    width: 670px;

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

.payment-icons img{
    background: var(--payment-methods-icons-bg-color);
    max-height: 78px;
    width: auto;
    min-width:116px;
    border-radius: 99px;
    padding: 18px;
    margin:5px 10px;

}

/*****************************************************
    Terms abd condition - 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-coolor);
    color: var(--footer-color);
    margin: 80px 0px 0px 0px;
    padding: 24px;
    text-align: center;
}

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

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

    header .logo{
        height: 56px;
    }

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

    #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;
    }
    .primary-cta-button{
        padding: 16px 40px;
        font-size: 18px;
    }

    .payment-methods{
        max-width: 600px;
    }
    .payment-methods-title{
        font-size: 26px;
    }
    .payment-icons{
        padding: 24px 80px;
    }

    .payment-icons img{
        padding: 15px;
        max-height: 75px;
        min-width: 100px;
    }

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

@media only screen and (min-width:360px) and (max-width:744px) {

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

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

    header .logo {
        height: 48px;
    }
    .secondary-cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    main{
        height: calc(100vh - 68px);
        height: 495px;
    }

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

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

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

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

    .primary-cta-button {
        min-width: 324px;
        font-size: 18px;
        padding: 14px 15px !important;
    }

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

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

    .feature{
        padding: 7px;
        max-width: 360px;
        height: 75px;
    }

    .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: 30px auto 0px;
    }

    .payment-methods-title {
        font-size: 24px;
        margin: 5px 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: 75px;
        display: inline-block;
        background-color: #24222D;
    }

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

    footer {
        /* padding: 24px 24px 74px 24px; */
    }

}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .secondary-cta-button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 769px) and (max-height: 700px) {
    #page-container {
        background-size: contain;
    }

    main {
        height: calc(100vh - 230px);
    }

    .hero-jumbotron {
        gap: 12px;
    }

    .offer-title {
        font-size: 24px;
        line-height: normal;
    }

    .offer-description {
        font-size: 45px;
    }
}