.hero-section {
    background-color: var(--clr-primary-30);
    height: 52.5vh;
    border-radius: 35%;
    margin-bottom: 3%;
    max-width: 100%;
}

.hero-section-wib {
    position: relative; /* Ensure child elements can be positioned absolutely */
    background-image: linear-gradient(to right, var(--clr-light-greem-100), var(--clr-dark-green-100)); /* Background gradient */
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); /* Bottom shadow */
    height: 50vh;
    overflow: hidden;
}

.svg-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.5;
}

.gorilla img{
    z-index: 2;
    opacity: 1;
    top: 30px;
}


.hero-title {
    position: absolute;
    max-width: 55%;
    left: 5%;
    top: 10%;
    color: white;
    line-height: 1.8;
    letter-spacing: 2px;
    z-index: 2;
}
.highlight {
    color: var(--clr-accent-100);
}

.highlight1 {
    color: var(--clr-accent-100);
    font-weight: lighter;
}


@media (max-width: 675px) {
    .gorilla img{
        display: none; /* Hide gorilla */
    }

}

/* Media query for screen widths 650px and above */
@media (min-width: 675px) {
    .svg-container img {
        left: 15%; /* Move all images 20% left */
    }

    .hero-section-wib {
        border-radius: 0 0 40px 40px;
    }

    .gorilla img {
        left: 20%;
    }
}

@media (min-width: 1000px) {
    .hero-title{
        left: 14%;
    }
}


/* ######################### */
/* ####### part two ######## */
/* ######################### */

.first-two-sections {
    background-color: #e9eff2;
    padding-bottom: 5%;
}

.highlight-dark {
    color: var(--clr-light-greem-100);
}

.casino-intro-explanation {
    display: flex;
    flex-direction: row;
    padding: 0 10%;
    gap: 2rem;
}

.reload-intro-first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-intro {
    display: flex;
    width: 50%;
    justify-content: center;
}

.casino-intro-image {
    display: flex;
    align-items: center;
    width: 100%;
}

.casino-intro-image img{
    width: 100%;
    height: auto;
    border-radius: 40px;
}

@media (max-width: 800px) {
    .casino-intro-explanation {
        flex-direction: column;
    }

    .casino-intro {
        width: 100%;
    }
}


/* ######################### */
/* ####### considerations ######## */
/* ######################### */


.highlight-light-blue {
    color: var(--clr-primary-50);
}

.highlight {
    color: var(--clr-accent-100);
}

.casino-spins-explanation {
    position: relative;
    background-image: linear-gradient(to bottom, var(--clr-dark-green-100), var(--clr-light-greem-100)); /* Background gradient */
    padding: 5% 10%;
    color: white;
}

.casino-profiting {
    display: flex;
    flex-direction: row;
    gap: 6rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.casino-profit {
    display: flex;
    width: 50%;
    justify-content: center;
}

.casino-profit-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 40px; /* Ensure a circular shape */
}
.casino-profit-content {
    display: flex;
    flex-direction: column;
}

.factor-consider {
padding: 5% 0;
}

.factor-consider ul li {
    margin-top: 3%; /* Adds spacing between bullet points */
}

.opacity {
    opacity: 80%;
}


@media (max-width: 1000px) {
    .casino-profiting {
        flex-direction: column;
        gap: 1rem;
    }
    .casino-profit {
        width: 100%;
    }
    .casino-profit-image {
        order: 2;
        justify-content: center;    
    }
    .casino-profit-image img{
        width: 75%;    
    }
}


/* ######################### */
/* ####### types of casino offers ######## */
/* ######################### */


.offer-types-flex {
    display: flex;
    flex-direction: row;
    gap: 14em;
    padding: 3% 0;
}

.offer-type {
    border: 2px solid var(--clr-light-greem-100);
    padding: 2.5% 6%;
    border-radius: 25px;
    width: 50%;
}

.offer-summary {
    padding: 5% 0;
}

.offer-type2 {
    display: flex;
    justify-content: center;
    padding: 5% 0;
}
.offer-type3 {
    text-align: center;
    width: 50%;
    border: 1px solid var(--clr-accent-100);
    padding: 2.5% 6%;
    border-radius: 25px;
}


@media (max-width: 1050px) {
    .offer-types-flex {
        gap: 7em;
    }
}

@media (max-width: 800px) {
    .offer-types-flex {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        padding-bottom: 0;
    }
    .offer-type {
        width: 75%;
    }
    .offer-type3 {
        width: 75%;
    }
    .offer-type2 {
        padding-top: 3rem;
    }
}


/* ######################### */
/* ####### Expert button ######## */
/* ######################### */

.expert-button-container {
    padding: 3% 0;
}


.expert-button {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between items */
    padding: 5%;
    margin: 0 5%;
    border-radius: 20px;
    background-color: var(--clr-dark-green-100);
    color: white;
    box-shadow: inset 0 0 0 1px #60ba8d;
}

.background-glowing {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0.5;
    z-index: 1;
    left: 20%;
    top: 30%;
}

.expert-button-flex2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between items */
    margin-inline: auto;
    z-index: 2;
}

.get-started-btn2 img{
    width: 120px;
    height: auto;
    color: var(--clr-green-100);
}

.get-started-btn-gamble {
    width: 120px;
}


@media (min-width: 450px) {
    .expert-button {
        flex-direction: row;
        align-items: center;
        gap: 5%;
        padding: 0.5% 2%;
    }
    
}

.last-container {
    background-color: #e9eff2;
}


/* ######################### */
/* ####### Expert button ######## */
/* ######################### */

.glowing-background-1 {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
    width: 50%;
    filter: brightness(1.25);
}

.glowing-background-1 img{
    width: 100%;
    z-index: -1;
}


/* ####################################*/
/* ########## FAQs ############# */
/* ##########      ############# */
/* ################################### */

.faq-container-main {
    background-color: var(--clr-primary-20);
}

.faq-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5% 0;
    padding-top: 2%;
}
.faq-item {
    max-width: 70%;
}

.heading-small {
    font-weight: var(--fw-light);
    padding-top: 5%;
    font-size: 2.5rem;
}

@media (max-width: 500px) {
    .faq-item {
        max-width: 90%;
    }

}