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

html,
body {
    overflow-x: hidden;
}

html {
   font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
}

body {
    color: #0a0235;
    line-height: 1.5;
    background-color: rgb(244 245 255)
}

.container {
    max-width: 1200px;
    margin: auto;

}

a,
button {
    cursor: pointer;
}

header {
    background: #0a0235;
    padding: 20px;
    border-bottom: solid 1px rgb(59 53 93);
}


.menu-toggle {
    display: none;
    font-size: 22px;
    color: white;
    background: none;
    border: none;
}

.menu-icon {
    width: 50px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 4px;
    font-size: 14px;
    font-weight: 700;

}


.nav {
    display: flex;
    list-style: none;
    align-items: center;
    padding-bottom: 0;
   

}

.nav img {
    left: 0;
    vertical-align: middle;
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

nav li {
    position: relative;
    margin: 0 13px;
}

.nav li:hover>img {
    transform: rotate(0deg);
}


.country-btn {
    width: 95px;
    display: flex;
    align-items: center;
}

#country-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: solid 1px white;
    color: white;
    cursor: pointer;
    font-size: 0.7em;
}

#country-toggle span {
    text-transform: uppercase;
}

.btn {
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5rem;

}

.exclusive__btn {
    background-color: rgb(100 111 251);
    color: #fff;
    font-weight: 700;
    border: none;
    margin-left: 10px;

}
.exclusive__btn:hover{
    background: rgb(169 175 253);
}



.country-toggle-btn:hover {
    background: rgba(107, 95, 239, 0.05);
}

.country-code {
    overflow: hidden;
    white-space: nowrap;
}

.divider {
    display: block;
    height: 11px;
    border-right: 1px solid #e5e0e8;
}

.toggle-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #e5e0e8;
    rotate: -180deg;
}

.banner {
    background-color: #0a0235;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 42px;
    color: #fff;
    border-left: solid 1px rgb(59 53 93);
    border-right: solid 1px rgb(59 53 93);
}

.banner-container-inner {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.banner-text {
    position: relative;
    width: 100%;
    padding: 1.5em;

}

.banner-img {
    position: absolute;
    right: 0;
    top: 16px;
    display: block;
}

.banner-text h1 {
    font-size: clamp(1.725rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    padding-bottom: 0.25em;

}

.banner-text p {

    color: rgb(206, 204, 215);
    font-weight: 500;
    margin-top: 16px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1.35em;
}

.section-title {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
    gap: 9px;
    font-size: 1.65rem;
    font-weight: 800;
    color: #0a0235;
    max-width: 1200px;
}


.close-icon {
    width: 18px;
    height: 18px;
    color: #1a1a3e;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.close-icon:hover {
    opacity: 0.6;
}

.section-title-inner {
    max-width: 1200px;
    display: flex;
    justify-content: flex-start;
    margin: 3em 0 1.7em;
    align-items: center;
    gap: 16px;
}

.section-title-inner h1 {
    font-size: clamp(1.75em, 5vw, 3em);
    font-weight: 800;
    color: #1a1a3e;
    line-height: 1.2;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.page-number,
.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 700;
    border: none;
}

.page-number.active {
    background-color: rgb(244 245 255);
    color: #5a4db8;
    border: none;
}

.page-number:hover {
    background-color: rgb(244 245 255);
    color: #5a4db8;
}

.table-info {
    text-align: center;
    margin-top: 10px;
    color: #888;
    font-size: 14px;
}


.pagination-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 auto;
}

.pagination-btn {
    width: 26%;
    margin: 0 auto;
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    vertical-align: middle;
    background-color: rgb(83 95 251);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.pagination-btn:hover {
    opacity: 0.8;
}

.pagination-btn.active {
    background: #6b5fef;
    color: white;
    border-color: #6b5fef;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.casino-grid {
    max-width: 1200px;
    margin: 0 auto;
}





.id {
    position: absolute;
    background-image: linear-gradient(135deg, #9f4eff 2.88%, #4ec5f6 100%);
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    color: #fff;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
}


.visits {
    font-size: 0.725rem;
    line-height: 1.25rem;
    color: rgb(139 41 255);
    text-align: center;
}



.score-logo {
    padding-right: 18px;
}

.score-logo img ::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.score-logo p {
    text-transform: uppercase;
    font-size: 0.65rem;
}

.casino-score {
    padding: 1.5em;
    border-right: 1px solid #c4c0d0;
    display: flex;
    text-align: center;
    align-items: center;
}

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

    background-color: rgb(244 245 255);
    border-radius: 16px;
    padding: 10px;
}

.score-value {
    width: 45px;
    height: 45px;
    background-color: rgb(125, 206, 130);
    border-radius: 8px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
}

.view-details-link {
    --tw-text-opacity: 1;
    color: rgb(83 95 251 / var(--tw-text-opacity));
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
}

.score-value p {
    margin: 0;
    --tw-text-opacity: 1;
    color: rgb(10 2 53 / var(--tw-text-opacity));
    font-weight: 900;

}

.casino-bonus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bonus-info h1 {
    font-size: 1rem;
    line-height: 1.5;
    margin: 5px 0;
    color: #0a0235;
}

.bonus-info {
    font-size: 0.75rem;
    line-height: 1rem;
    padding-right: 1em;
}

.bonus-info h4 {
    --tw-text-opacity: 1;
    color: rgb(59 53 93 / var(--tw-text-opacity));
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1rem;

}



.bonus-info a {
    color: rgb(83 95 251);
    font-weight: 500;
}

.bonus-info p {
    --tw-text-opacity: 1;
    color: rgb(108 103 134 / var(--tw-text-opacity));
    font-weight: 400;
}

.bonus-button {

    font-weight: 900;
    border-radius: 26px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5rem;
    display: flex;
    flex-direction: column;
}

.casino-visit-link {
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.bonus__btn {
    width: 100%;
    max-width: 240px;
    min-width: 169px;
    height: 48px;
    margin: 10px auto;
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5rem;
    padding: 12px 25px;
    background: rgb(139 41 255);
    color: white;
    border: none;
    cursor: pointer;
}

.bonus__btn:hover {
    opacity: 0.8;
}

.bonus-button p:hover {
    opacity: 0.8;
}

.casino-name-link {
    color: rgb(83 95 251);
    text-decoration: none;
    font-weight: 600;
    margin-top: 7px;
}

.accordion {
    background: white;
    border-radius: 14px;
    border-left: 14px solid rgb(139 41 255);
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 49px auto;
}

.accordion:hover {

    box-shadow:
        0px 5px 20px rgba(10, 2, 53, 0.15),
        0px 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    cursor: pointer;
    position: relative;
}

.accordion-text {
    flex: 1;
    font-weight: bold;
}

.accordion-arrow {
    transition: 0.3s;
    rotate: 180deg;
}

.accordion-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 20px;
    overflow-y: auto;
    scrollbar-width: none;
    
}

.accordion-content-text {
    padding: 18px;
}

.accordion-content-logo {
    background-color: rgb(244 245 255);
    border-radius: 18px;
    padding: 2em 6em;
}

.accordion-content p {
    padding: 10px 0;
}

.accordion.active .accordion-content {
    max-height: 200px;
}

.accordion.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content-text p {
    font-size: 1rem;
    line-height: 1.5rem;
}

.accordion-content-text a {
    color: rgb(83 95 251);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.rate-button-section {
    text-align: center;

}

.rate-button {
    background: rgb(83, 95, 251);
    color: #fff;
    font-size: 1em;
    margin-bottom: 5em;
    display: inline-block;
    border-radius: 28px;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
    line-height: 1.5rem;
    transition-duration: 150ms;
    border: none;
}
   .rate-button:hover{
        opacity: 0.5;
    }

.best-casinos {
    background: #fff;
}

.best-casinos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px 0;
    border-left: 1px solid #c4c0d0;
    border-right: 1px solid #c4c0d0;
}

.casino-wrapper-texts {
    width: 65%;
    margin: 0 auto;
    padding-top: 5em;
}

.best-casinos-wrapper h1 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    margin-bottom: 15px;
    font-family: Gilroy, Arial, Roboto, sans-serif;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(10 2 53 / var(--tw-text-opacity));
}

.best-casinos-wrapper p,
ul {
    color: rgb(84 78 114);
    /* line-height: 1.7; */
    padding-bottom: 2rem;
    font-size: clamp(1.275rem, 2vw, 1.5rem);
    font-weight: 400;
}
.best-casinos-wrapper ul{
    padding-left: 22px;
}
.table-wrapper {
    width: 65%;
    margin: 30px auto;
    overflow-x: auto;
}

.casino-table thead {
    background: #f4f5ff;
    border-top: 1px solid rgb(169 175 253);
    border-bottom: none;
}

.casino-table th {
    text-align: left;
    padding: 14px 16px;
    font-weight: 700;
    color: #1a1a3e;
    font-size: 14px;
}


.casino-table td {
    padding: 21px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #3b355d;
}


.casino-table a {
    color: #6b5fef;
    text-decoration: none;
    font-weight: 700;
}

.casino-table a:hover {
    color: #5a4db8;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e5e0e8;
}

.casino-table tbody tr:hover {
    background: #fafaff;
}

.best-bonuses a {
    text-decoration: none;
    cursor: pointer;
    color: rgb(100 111 251);
}

.bonus-section {
    padding: 40px 0;
    background: #fff;
}

.bonus-section h1 {
    text-align: center;
    font-weight: 900;
    color: rgb(10 2 53);
    font-size: clamp(2rem, 3vw, 3rem);
}

.bonus-grid {
    /* width: 65%; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 2em;
}

.bonus-card {
    background: #fff;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: 0.3s;
    box-shadow: 0 0 0 1px #e5e0e8;
    padding: 12px;
}

.bonus-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.bonus-logo {
    background: #f4f5ff;
    border-radius: 15px;
    width: 100%;
    height: 140px;
    padding: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-logo img {
   width: 100%;
   height: 100%;
    aspect-ratio: 1 / 1;
    padding: 5px;
}

.info-btn__mobile {
    display: none;
}

.info-btn {
    border: 1px solid rgb(83, 95, 251);
    color: rgb(83, 95, 251);
    background-color: rgb(221 223 254);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    border-radius: 28px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5rem;
    position: absolute;
    margin-top: 10em;
}

.bonus-content {
    text-align: center;
    margin-top: 15px;
}

.bonus-content h4 {
    font-size: 14px;
    font-weight: 800;
    margin: 10px 0 10px 0;
}


.bonus-title {
    font-size: 18px;
    font-weight: 800;
    margin: 10px 0;
}

.bonus-link {
    color: #6b5fef;
    font-weight: 700;
    font-size: 14px;
}

.claimed {
    display: block;
    color: green;
    font-size: 13px;
    margin: 10px 0;
}

.bonus-btn {
    width: 100%;
    background: rgb(139 41 255);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
}

.bonus-btn:hover {
    opacity: 0.5;
}

.review-link {
    text-decoration: none;
    display: block;
    margin-top: 10px;
    color: #6b5fef;
    font-weight: 700;
}

.games h1 {
    font-size: clamp(1.25rem, 5vw, 3rem);
}

.grid-button {
    background-color: #fff;
}


.games-btns {
    display: flex;
    gap: 10px;

    overflow-x: auto;
    padding: 1em 0;
    margin: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-btns::-webkit-scrollbar {
    display: none;
}

.games-btns>* {
    flex: 0 0 auto;
}

.games-btn {
    border: 1px solid rgb(83 95 251);
    color: rgb(83 95 251);
    background-color: #fff;
    display: inline-block;
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    line-height: 1.5rem;
    transition-duration: 150ms;
}

.games-btn.active {
    border: none;
    color: #fff;
    background-color: rgb(83 95 251);
}

.games-slider {
    /* width: 65%; */
    margin: auto;
    text-align: center;
}

.slider-button {
    background: rgb(231 230 235);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: none;
}

.slider-button:active {
    background: rgb(83 95 251);
}

.games-slider-wrapper {
    display: flex;
    justify-content: space-between;
}

.slide-img {
    border-radius: 10px;
}

.slider-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;
    margin-top: 20px;
    padding-bottom: 3em;
}

.slider-container::-webkit-scrollbar {
    display: none;
}


.slide {
    flex: 0 0 calc((100% - 60px) / 4);
    border-radius: 10px;
    scroll-snap-align: start;
    position: relative;

}

.overlay {
    position: absolute;
    inset: 0;
    background: #1a1a3e;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    opacity: 0;
    transition: 0.3s ease;
}

.overlay .btn {
    width: 70%;
}

.overlay h1 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #fff;
}

.slide:hover .overlay {
    opacity: 0.95;
}

.slide img::before {
    content: "";
    width: 100%;
    padding-top: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-brand {
    width: 4.5rem;
    height: 2.25rem;
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-brand img {
    width: 80%;
    height: auto;
}



.best-casinos-wrapper__ratings {
    display: flex;
    padding: 0;
}

.casino-wrapper-texts__rating {
    width: 100%;
    padding: 3em;
}




.best-casino-wrapper-grid {
    padding: 0;
    border: none;
}

.casino-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding-top: 0;

}

.grid-item {
    border: 1px solid #c4c0d0;
    padding: 2.5em 2.5em 0 2.5em;

}

.grid-item__btn {
    background: #0a0235;

}

.last-grid {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: 1.5;
}

.last-grid p {
    color: #fff;
}


.casino-wrapper-texts ol {
    color: rgb(84 78 114);
    line-height: 1.6;
    padding: 0 1rem 1.5rem;
    font-size: clamp(0.875rem, 3vw, 1.25rem);
    font-weight: 400;
}

.casino-wrapper-dark {
    width: 50%;
    background: #0a0235;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.dark {
    display: flex;

}

.dark-text {
    width: 72%;
    padding: 5em;
}

.dark-text p {
    line-height: 1.6;
    padding-bottom: 1.5rem;
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 400;
}

.dark-text h1 {
    font-size: clamp(1.75rem, 2vw, 3rem);
    ;
    margin-bottom: 15px;
    font-family: Gilroy, Arial, Roboto, sans-serif;
    font-weight: 700;

}


.stats-box h1 {
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.stats-box h3 {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: 600;
}

.stats-section {
    width: 50%;

    background: #3B355D;
    position: relative;
    display: flex;
    align-items: center;
}

.stats-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.stats-box {
    width: 75%;
    text-align: center;
    color: white;
}


.side-controls {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq .arrow {
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;

}

.arrow img {
    width: 20px;
}

.dots {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dots li {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.dots li.active {
    opacity: 1;
    height: 112px;
    width: 10px;
    border-radius: 10px;
}

.promise {
    border: none;
}

.questions {
    border: none;
}

.faq {
    width: 65%;
    margin: 40px auto;
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

.faq-question:hover {
    color: rgb(83, 95, 251);
}

.faq-question:active {
    color: rgb(83, 95, 251);

}

.arrow {
    transition: 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: #666;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.find-casino-image {
    position: relative;

}

.find-casino-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.find-casino {
    top: 50%;
    left: 50%;
    text-align: center;
}






.casino-stats-box h1 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    ;
    font-weight: 700;
    margin-bottom: 20px;
}

.casino-stats-box h3 {
    font-size: 20px;
    font-weight: 600;
}

.casino-stats-section {
    width: 50%;

    background: #3B355D;
    position: relative;
    display: flex;
    align-items: center;
}

.casino-stats-content {
    width: 70%;
    max-width: 1200px;
    /* margin: auto; */
    position: relative;
}

.casino-stats-box {
    padding-left: 11em;
    color: white;
}


.casino-side-controls {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.side-controls .arrow,
.casino-arrow {
    background: rgb(83 95 251);
    padding: 20px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* opacity: 0.5; */

}

.casino-arrow:hover {
    background: rgb(169 175 253);
}
.side-controls .arrow:hover{
    background: rgb(169 175 253);
}
.casino-arrow img {
    width: 20px;
}

.casino-dots {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.casino-dots li {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.casino-dots li.active {
    opacity: 1;
    height: 112px;
    width: 10px;
    border-radius: 10px;
}

.casino-dark-text {
    width: 60%;
    padding: 5em 5em 2em 3em;
    --tw-border-opacity: 1;
    border-left: 1px solid rgb(59 53 93 / var(--tw-border-opacity));
}

.second-wrapper {
    background-color: #231B49;
}

.dark-text-box h1 {
    font-size: clamp(1.75rem, 2vw, 3rem);
    margin-bottom: 15px;
    font-weight: 700;
    --tw-text-opacity: 1;
}

.dark-text-box p {
    line-height: 1.6;
    padding-bottom: 1.5rem;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: 400;
}

.logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
    justify-items: center;
    align-items: center;
}

.logos-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: 0.3s;
}

.logos-img img:hover {
    opacity: 1;
}

footer {
    background: #0a0235;
    color: #fff;
    font-family: sans-serif;
}

.footer-top {
    width: 60%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-top__content {
    padding: 20px;
}

.footer-logo {
    width: 44%;
    align-items: center;


}

.footer-logo img {
    width: 180px;
}

.footer-text {
    width: 72%;
    line-height: 1.6;
}

.footer-divider {
    width: 1px;
    align-self: stretch;
    background: #333;
    height: auto;
}

.footer-middle {
    width: 61%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1px 1.5fr;
    gap: 40px;
}


.footer-col h3,
.footer-safety h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col {
    padding: 2em;
}

.footer-col li {
    margin-bottom: 10px;
    cursor: pointer;
    color: rgb(206, 204, 215);
    font-size: 0.7em;

}

.footer-col li:hover {
    color: rgb(83 95 251);

}

.rating {
    background: #4caf50;
    color: black;
    padding: 2px 6px;
    border-radius: 5px;
    margin-right: 8px;
    font-size: 12px;
}

.footer-safety {
    padding: 2em;
}


.footer-safety p {
    color: rgb(206, 204, 215);
    margin-bottom: 15px;
    line-height: 1.75;

}

.footer-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex-wrap: wrap;
}

.footer-logos img {
    width: 50%;
    object-fit: cover;
    transition: 0.3s;
}

.logos img:hover {
    opacity: 1;
}

.footer-top-border,
.footer-middle-border {
    border-bottom: 1px solid #333;

}

.footer-bottom {
    width: 61%;
    margin: auto;
    padding: 2em;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
}

.footer-links a {
    margin-right: 20px;
    color: rgb(206, 204, 215);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgb(83 95 251);
}

.footer-email {
    color: rgb(206, 204, 215);
}

.footer-email:hover {
    color: rgb(83 95 251);

}

.copyright {
    font-size: 14px;
}

.casino-wrapper__img {
    width: 100%;

}


@media (max-width: 768px) {
    .slider-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }



    .slide-brand {

        position: absolute;
        top: 2px;
        right: 1px;
        background: #fff;
        /* border-radius: 10px; */
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .desktop-text {
        display: none;
    }

    #country-toggle {
        border: #000;
        color: #000;
    }

    .side-controls {
        /* flex-direction: row; */
        bottom: 10px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .dark {
        flex-direction: column;
    }

    .dots {
        flex-direction: row;
    }

    .arrow {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    .casino-grid {
        width: 90%;
    }

    .casino-wrapper-grid {
        grid-template-columns: repeat(1, 1fr);

    }

    .table-wrapper {
        width: 100%;

    }

    .bonus-grid {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
    }


    .accordion {
        width: 80%;
    }

    .footer-logo {
        width: 98%;
    }

    .footer-logos img {
        width: 18%;
    }

    .casino-stats-content {
        width: 100%;
    }

    .casino-arrow {
        display: none;
    }

    .casino-stats-box {
        padding: 0;
        text-align: center;
    }

    .casino-stats-content {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .side-controls {
        position: static;
        transform: translateY(0);
    }

    .casino-dots li.active {
        rotate: 90deg;
        height: 50px;

    }

    .casino-dots {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 32%;
        justify-content: space-evenly;
    }

    .stats-box {
        width: 100%;
    }

    .stats-content {
        width: 100%;
    }

    .side-controls .arrow {
        display: none;
    }

    .stats-box {
        padding: 0;
        text-align: center;
    }

    .stats-content {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .controls {
        position: static;
        transform: translateY(0);
    }

    .dots li.active {
        rotate: 90deg;
        height: 52px;

    }

    .dots {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 25%;
        justify-content: space-evenly;
    }

    .faq {
        width: 90%;
        margin: auto;
    }

    .rate-button {
        width: 90%;
    }

    .casino-bonus {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bonus-button {
        flex-direction: row;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-around;
    }


    .score-logo {
        display: flex;
        align-items: center;
    }

    .casino-score {
        border-right: none;
        padding: 0;
    }


    .casino-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

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

    }

    .bonus-card {
        min-width: 260px;
        flex-shrink: 0;
    }

    .footer-top {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 2em;
    }

    .footer-middle {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 1px;
    }

    .footer-bottom {
        grid-template-columns: repeat(1, 1fr);

    }

    .footer-col {
        padding: 1em;

    }

    .footer-top__content {
        border-top: 1px solid #333;
    }

    .footer-middle {
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;

    }

    .footer-bottom {
        width: 100%;
    }

    .footer-safety {
        border-top: 1px solid #333;
    }
}

@media (max-width:1240px) {
    .menu-toggle {
        display: block;
    }



    .banner-img img {
        display: none;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .nav {
        position: absolute;
        top: 81px;
        right: 0;
        width: 90%;
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 20px;
        z-index: 5;
        background: #fff;
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .nav.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav li a {
        color: #000;
        font-weight: 500;
    }


    .button-container {
        margin: 0;
        flex-direction: row-reverse;
    }

    #country-toggle {
        border: 1px solid #000;
        color: #000;
    }

    .nav li .dropdown {
        position: static;
        box-shadow: none;
    }

    .nav li img {
        filter: brightness(0);
    }

    .nav .nav-li {

        width: 97%;
        border-bottom: 1px solid rgb(231 230 235);
        padding: 2em;

    }

    .nav-li img {
        width: 28px;
        height: 28px;
        margin-left: auto;
    }

    .nav-li {
        position: relative;
    }

    .nav-li a {
        display: inline-block;
    }

    .nav-li img {
        position: absolute;
        right: 0;

    }


    .banner {
        width: 100%;
    }

    .banner-container-inner {
        width: 100%;

    }

    .bonus-info {

        padding: 0;
    }

    .section p {
        line-height: 1em;
        font-size: 1em;
    }

    .section-title-inner h1 {
        font-size: 1.5em;
    }



    .slider-button {
        display: none;
    }

    .casino-grid {
        width: 90%;
    }

    .casino-list {
        width: 100%;
    }


    .accordion-content {
        flex-direction: column;

    }

    .bonus-grid {
        width: 90%;
        padding: 0;

    }

    .casino-wrapper-texts {
        width: 100%;
        padding: 1em;
    }



    .best-casino-wrapper-grid .casino-wrapper-grid {
        padding: 0;
    }

    .games-btns {
        width: 100%;
    }

    .games-slider {
        width: 100%;
    }

    .footer-logo {
        width: 95%;
    }

    .footer-logos img {
        width: 30%;
    }

    .casino-wrapper-dark {
        width: 100%;
    }

    .stats-section {
        width: 100%;
    }

    .dark-text {
        width: 100%;
    }

    .casino-stats-section {
        width: 100%;
    }


    .best-casinos-wrapper {
        padding-left: 2em;
        padding-right: 2em;
    }


    .footer-top {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 2em;
    }



    .footer-bottom {
        grid-template-columns: repeat(1, 1fr);

    }

    .footer-col {
        padding: 1em;

    }

    

    .footer-top__content {
        border-top: 1px solid #333;
    }

    .footer-middle {
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;

    }

    .footer-bottom {
        width: 100%;
    }

    .footer-safety {
        border-top: 1px solid #333;
    }

    .casino-dark-text {
        width: 90%;
    }

    .dark {
        flex-direction: column;
    }

    .dark .logos {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }

    .casino-arrow {
        display: none;
    }

    .casino-stats-box {
        padding: 0;
        width: 89%;
        margin: auto;
    }

    .casino-stats-content {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        padding-top: 25px;
    }

    .side-controls {
        position: static;
        transform: translateY(0);
    }

    .casino-dots li.active {
        rotate: 90deg;
        height: 50px;

    }

    .casino-dots {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 25%;
        justify-content: space-evenly;
    }

    .stats-content {
        width: 100%;
    }

    .side-controls .arrow {
        display: none;
    }

    .stats-box {
        padding: 0;
        margin: auto;
    }

    .stats-content {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .controls {
        position: static;
        transform: translateY(0);
    }

    .dots li.active {
        rotate: 90deg;
        height: 52px;

    }

    .dots {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 25%;
        justify-content: space-evenly;
    }

}



@media (min-width: 769px) and (max-width: 1024px) {

    .container {
        width: 90%;
        margin: auto;
    }

    .casino-name {
        display: none;
    }


    .casino-score {
        border: none;
    }

    .bonus-grid {

        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 15px;
        max-width: 100%;
    }

    .bonus-card {
        min-width: 260px;
        flex-shrink: 0;
    }

    .bonus-grid::-webkit-scrollbar {
        display: none;
    }

    .info-btn {
        display: none;
    }

    .footer-logo {
        width: 98%;
    }

    .bonus-button {
        flex-direction: row;
    }

    .casino-bonus {
        justify-content: space-evenly;
    }

    .accordion {
        width: 80%;
    }

}


/* ------------ casino block---------------- */
.card {
    display: flex;
    align-items: flex-start;
    padding: 0.5em;
    border-radius: 16px;
    margin-bottom: 25px;
    gap: 12px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.score-box:hover{
    box-shadow:  0px 5px 20px rgba(10, 2, 53, 0.15),
        0px 2px 10px rgba(0, 0, 0, 0.1);
}
.score {
    flex: 1;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;

    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
}

.score-text {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.score-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef0ff;
    padding: 10px;
    border-radius: 12px;
    justify-content: center;
}

.score-box img {
    aspect-ratio: 16 / 6;
    height: 100%;
    width: 36%;
}

.number {
    background: #7dce82;
    color: #0a0235;
    font-weight: 900;
    padding: 7px 7px;
    border-radius: 8px;
}

.bonus {
    width: 50%;
}

/*============ RIGHT ===== */
.card .right {

    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /* margin-top: 10px; */
    width: 500px;
}

.card .left {
    display: flex;
    align-items: center;
}

/* BONUS */
.bonus span {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}


.bonus h3 {
    margin: 5px 0;
    font-size: 18px;
}

.bonus p {
    font-size: 13px;
    color: #666;
}

.info {
    padding: 0 25px;
}

/* ACTIONS */
.actions {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.actions a {
    color: #5c6cff;
    font-weight: 600;
    text-decoration: none;
}

.actions button:hover {
    opacity: 0.5;
}

.inbox {
    display: none;
}

.score a {
    color: rgb(83, 95, 251);
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
}

.score-box span {
    text-transform: uppercase;
    font-size: 0.6em;
    font-weight: 800;
}

.logo-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 148px;
    height: 148px;

    background: #f4f5ff;
    border-radius: 16px;
    padding: 10px;

}

.logo-box img {
    width: 90px;
    height: auto;
    object-fit: contain;
    margin: auto;
}

.info li {
    font-size: 0.875em;
}


.info ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.775rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(59 53 93 / var(--tw-text-opacity));
}

.info li {
    position: relative;
    padding-left: 25px;
}

.info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url("../images/checked.jpg") no-repeat center;
    background-size: contain;
    color: #000;
}

.info h3 {
    font-weight: 500;
    font-size: 1em;
    padding-bottom: 0.625rem;
}

.best-casinos-wrapper__ratings {
    display: flex;
    align-items: flex-end;
    width: 100%;
}


.best-casinos-wrapper__ratings::before {
    content: "";
    display: block;
    /* padding-top: 100%;  */
}

.best-casinos-wrapper__ratings img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-btn__mobile {
    display: none;
}

/* ---------TABLET---------- */
@media (max-width: 1024px) {


    .visits {
        display: none;
    }

    .card {

        flex-wrap: wrap;
    }

    .card .left {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .card .right {
        border: none;
        justify-content: center;
        align-items: center;
    }

    .card .left,
    .score,
    .card .right {
        width: 100%;
    }

    .score {
        border-left: none;
        padding-left: 0;
        margin-top: 10px;
    }


    .info {
        display: none;
    }

    .logo-box {
        width: 100%;
    }

    .logo-box img {
        width: 50%;
        margin: auto;
    }

    .actions {
        flex-direction: column-reverse
    }

    .score-box {
        padding: 5px;
        width: 100%;
    }

    .outbox {
        display: none;
    }

    .inbox {
        display: block;
    }

}

/*--------- MOBILE ---------------- */
@media (max-width: 600px) {
    .banner-container{
        padding: 10px 0;
    }
    .visits {
        display: none;
    }

    .card {
        flex-direction: column;
        text-align: center;
    }

    .card .left {
        flex-direction: column;
        align-items: center;
    }

    .logo-box {
        width: 100%;
    }

    .card .right {
        flex-direction: column;
    }

    .actions button {
        width: 70%;
    }

    .inbox {
        display: block;
    }

    .outbox {
        display: none;
    }

    .bonus span {
        display: none;
    }

    .bonus {
        width: 60%;
    }

    .actions {
        flex-direction: row;
    }

    .container {
        width: 90%;
        margin: auto;
    }

    .overlay {
        display: none;
    }

    .best-casinos-wrapper__ratings {
        display: flex;
        flex-direction: column-reverse;
    }

    .info-btn,
    .claimed,
    .bonus-content h4 {
        display: none;
    }

    .info-btn__mobile {
        position: static;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .bonus-card__logobox {
        width: 100%;
        gap: 10px;
        display: flex;
        justify-content: space-around;
    }

    .bonus-card__bonus-btn {
        width: 90%;
        padding: 10px 0;
    }

    .bonus-card__links {
        width: 90%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bonus-content {
        margin-top: 0;
        text-align: start;
        width: 50%;
    }

    .bonus-logo {
        width: 45%;
        padding: 0;
    }

    .review-link {
        margin-top: 0;
    }
    .score-box{
        gap: 2px;
    }

    .score-box span {
        font-size: 0.4em;
    }

    .score-box img {
        height: 20px;
    }

    .rate-button {
        width: 52%;
        padding-left: 0;
        padding-right: 0;
    }
 
    .slide {
        flex: 0 0 calc(100% / 2.5);
    }
        .best-casinos-wrapper {
        padding-left: 0.5em;
        padding-right: 0.5em;
        }
        .dark-text{
        padding: 2em;
        }
        .casino-dark-text{
            width: 95%;
            padding: 2em 3em 2em 1em;
        }
}

/* --------------MID TABLET --------------- */

@media (min-width: 601px) and (max-width: 1024px) {
    .visits {
        display: none;
    }

    .card {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    .card .right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border: none;
    }

    .card .left {
        flex-direction: column;
        border-right: 1px solid #eee;
        padding-right: 5px;
    }

    .card .left {
        width: 80%;
    }


    .score {
        border: none;
        padding-left: 0;
        margin-top: 10px;
    }

    .overlay {
        display: none;
    }

    .info {
        display: none;
    }

    .logo-box {
        width: 100%;
        height: 98px;
    }

    .logo-box img {
        width: 50%;
        margin: auto;
    }

    .actions {
        flex-direction: column-reverse;
        flex-shrink: 0;
    }

    .score-box {
        padding: 5px;
        width: 100%;
        margin: 0;
    }

    .outbox {
        display: none;
    }

    .inbox {
        display: block;
    }

    .bonus {
        flex: 1;
        max-width: 65%;
    }



    .footer-middle {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;

    }

    .footer-divider {
        display: block;
    }

    .footer-safety {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 20px;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .footer-bottom {
        grid-template-columns: repeat(1, 1fr);

    }

    .footer-col {
        padding: 1em;

    }

    .best-casinos-wrapper__ratings {
        display: flex;
        flex-direction: column-reverse;
    }



}