
.container--col-2 .toc {
    position: static !important;
    top: auto !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.container--col-2 .toc__btn {
    display: block !important;
    width: 100% !important;
    padding: 16px !important;
    background-color: #30284c !important;
    border: none !important;
    border-radius: 24px !important;
    color: #f7f7f7 !important;
    text-align: left !important;
    margin-bottom: 16px !important;
    cursor: default !important;
    justify-content: flex-start !important;
}

.container--col-2 .toc__btn svg {
    display: none !important;
}

.container--col-2 .toc__list {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.container--col-2 .toc__sublist {
    margin: 0 5px !important;
    padding: 0 !important;
    list-style: none !important;
}

.container--col-2 .toc__item {
    margin: 12px 0 0 0 !important;
}

.container--col-2 .toc__item:last-child {
    margin-bottom: 0 !important;
}

.container--col-2 .toc__link {
    text-decoration: none !important;
    color: #fff !important;
    display: block !important;
    padding: 4px 14px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    background: none !important;
}

.container--col-2 .toc__link:hover {
    color: #007cba !important;
    text-decoration: underline !important;
}

/* Two-column layout for content pages */
@media screen and (min-width: 1024px) {
    .container--col-2 {
        position: relative;
        display: grid;
        grid-template-columns: 978px auto;
        column-gap: 34px;
    }
}

/* TOC Sidebar Layout for content pages */
@media screen and (min-width: 1312px) {
    .container--col-2 {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 34px;
        align-items: start;
    }
    
    .toc {
        order: 2;
        margin-top: 16px 0;
    }
    
    .content {
        order: 1;
    }
}

@media screen and (max-width: 1311px) {
    .container--col-2 {
        display: block;
    }
    
    .toc {
        margin: 24px 0;
    }
}

/* Hide top bonus and exit popup on mobile */
@media screen and (max-width: 768px) {
    .top-bonuses--sticky,
    .popup.js-popup-bonus {
        display: none !important;
    }
}

/* Casino card image links */
.card__img-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card__img-link:hover {
    text-decoration: none;
    color: inherit;
}

/* On desktop, disable image links to preserve card flip functionality */
@media screen and (min-width: 769px) {
    .card__img-link {
        pointer-events: none;
        cursor: default;
    }
    
    .card__img-link:hover {
        text-decoration: none;
    }
}

/* On mobile, ensure image links work */
@media screen and (max-width: 768px) {
    .card__img-link {
        pointer-events: auto;
        cursor: pointer;
    }
}

/* Footer menu styling - grey text, no underlines */
.footer-menu .footer-menu__link,
.footer .footer-menu .footer-menu__link,
.footer-menu__link {
    color: #b6bdcc !important;
    text-decoration: none !important;
    display: inline-block;
}

ul.footer-menu a {
    color: #ccc;
    text-decoration: none;
}

.footer-menu .footer-menu__link:hover,
.footer .footer-menu .footer-menu__link:hover,
.footer-menu__link:hover,
.footer-menu .footer-menu__link:visited:hover {
    color: #f7f7f7 !important;
    text-decoration: none !important;
}

.footer-menu .footer-menu__link:visited,
.footer .footer-menu .footer-menu__link:visited,
.footer-menu__link:visited {
    color: #b6bdcc !important;
    text-decoration: none !important;
}

/* Header dropdown menu fixes */
@media screen and (min-width: 1024px) {
    .menu__item--dropdown {
        position: relative !important;
    }
    
    .menu__dropdown {
        position: absolute !important;
        top: 47px !important;
        left: -9px !important;
        width: 209px !important;
        background-color: #30284c !important;
        border-radius: 0 0 16px 16px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s, visibility 0.3s !important;
        z-index: 10 !important;
    }
    
    .menu__dropdown.menu__dropdown--open {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .menu__item--dropdown:hover > .menu__dropdown {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .submenu {
        padding: 10px 0 14px !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .submenu .menu__link {
        padding: 8px 20px !important;
        color: #f7f7f7 !important;
        display: block !important;
    }
    
    .submenu .menu__link:hover {
        color: #55E2E0 !important;
    }
}

/* Fix content tables: support 4-column withdrawal tables without flex distortion */
.content>table,
.wp-block-table table{
    display:block !important;
    width:100% !important;
    overflow-x:auto !important;
    border-collapse:separate !important;
    border-spacing:0 2px !important;
}

.content>table tbody,
.wp-block-table table tbody{
    display:table !important;
    width:100% !important;
    min-width:760px !important;
}

.content>table tr,
.wp-block-table table tr{
    display:table-row !important;
    min-height:0 !important;
    padding:0 !important;
    background-color:transparent !important;
}

.content>table td,
.content>table th,
.wp-block-table table td,
.wp-block-table table th{
    display:table-cell !important;
    width:auto !important;
    min-width:0 !important;
    padding:14px 16px !important;
    vertical-align:top !important;
    background-color:rgba(38,50,65,.72) !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
    line-height:1.45 !important;
}

.content>table td:nth-child(1),
.content>table td:nth-child(2),
.content>table td:nth-child(3),
.content>table th:nth-child(1),
.content>table th:nth-child(2),
.content>table th:nth-child(3),
.wp-block-table table td:nth-child(1),
.wp-block-table table td:nth-child(2),
.wp-block-table table td:nth-child(3),
.wp-block-table table th:nth-child(1),
.wp-block-table table th:nth-child(2),
.wp-block-table table th:nth-child(3){
    flex:none !important;
}

.content>table tr:first-of-type td,
.content>table tr:first-of-type th,
.wp-block-table table tr:first-of-type td,
.wp-block-table table tr:first-of-type th{
    font-weight:700 !important;
    color:#f8fafc !important;
    background-color:#263241 !important;
}

.content>table td p,
.content>table th p,
.wp-block-table table td p,
.wp-block-table table th p{
    margin:0 !important;
}

.content>table tr:first-of-type td:first-child,
.content>table tr:first-of-type th:first-child,
.wp-block-table table tr:first-of-type td:first-child,
.wp-block-table table tr:first-of-type th:first-child{
    border-top-left-radius:14px !important;
}

.content>table tr:first-of-type td:last-child,
.content>table tr:first-of-type th:last-child,
.wp-block-table table tr:first-of-type td:last-child,
.wp-block-table table tr:first-of-type th:last-child{
    border-top-right-radius:14px !important;
}

.content>table tr:last-of-type td:first-child,
.content>table tr:last-of-type th:first-child,
.wp-block-table table tr:last-of-type td:first-child,
.wp-block-table table tr:last-of-type th:first-child{
    border-bottom-left-radius:14px !important;
}

.content>table tr:last-of-type td:last-child,
.content>table tr:last-of-type th:last-child,
.wp-block-table table tr:last-of-type td:last-child,
.wp-block-table table tr:last-of-type th:last-child{
    border-bottom-right-radius:14px !important;
}

/* 2026 yellow/black template palette */
.body{
    color:#d8dde4 !important;
    background-color:#020202 !important;
}

.header,
.footer__top-wrapper,
.menu,
.menu__dropdown,
.container--col-2 .toc__btn{
    background-color:#0a0a0a !important;
}

.footer,
.footer__middle,
.tile,
.content--light,
.article-toc-box,
.promo__item-timer,
.tag--timer,
.popup-bonus,
.review-card{
    background-color:#121212 !important;
}

.btn--primary,
.faq__question{
    color:#020202 !important;
    background-color:#FFE131 !important;
}

.btn--primary svg{
    fill:#020202 !important;
}

.btn--primary:hover,
.btn--primary:focus{
    background-color:#fff06a !important;
    box-shadow:0 4px 18px rgba(255,225,49,.42) !important;
}

.btn--primary:active{
    background-color:#d9bc20 !important;
}

.btn--secondary,
.btn--bordered,
.slider-nav::before{
    background-color:#202020 !important;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--bordered:hover{
    background-color:#2c2c2c !important;
}

.btn--bordered{
    border-color:#3a3a3a !important;
}

.link,
.content a:not([class]),
.menu__link:hover,
.menu__item--dropdown:hover > .menu__link,
.menu__item--dropdown:focus > .menu__link,
.submenu .menu__link:hover,
.container--col-2 .toc__link:hover,
.footer-menu .footer-menu__link:hover,
.footer .footer-menu .footer-menu__link:hover,
.footer-menu__link:hover,
.promo-code__code{
    color:#FFE131 !important;
}

.icon-arrow-right,
.icon-arrow-down,
.icon-email,
.menu__item--dropdown:hover > .menu__arrow svg,
.menu__item--dropdown:focus > .menu__arrow svg{
    fill:#FFE131 !important;
}

.menu__item--dropdown:hover > .menu__arrow::before,
.menu__item--dropdown:focus > .menu__arrow::before{
    border-right-color:#FFE131 !important;
    border-bottom-color:#FFE131 !important;
}

.content>h1,
.content>h2,
.content>h3,
.light,
.top-bonus__title,
.popup-bonus__value,
.review-card__name{
    color:#ffffff !important;
}

.footer-menu .footer-menu__link,
.footer .footer-menu .footer-menu__link,
.footer-menu__link,
.menu__link,
.submenu .menu__link,
.popup-bonus__characteristic,
.popup-bonus__key,
.review-card__text,
.article-toc-box__title,
.article-toc-box__icon,
.article-toc-box__list li a:not([class]){
    color:#d8dde4 !important;
}

.footer__top-wrapper{
    border-top:1px solid rgba(255,225,49,.12);
    border-bottom:1px solid rgba(255,225,49,.12);
}

.footer__top-item.footer-menu-wrapper.tile-footer{
    width:100%;
    padding:0 !important;
    background:transparent !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
}

.footer__top-item.footer-menu-wrapper .footer-menu{
    margin:0 !important;
    padding:18px 0 !important;
    align-items:center;
}

.content>ul:not([class]) li::before,
ul.wp-block-list li::before{
    background-color:#FFE131 !important;
}

.content>ol:not([class]) li:before{
    color:#020202 !important;
    background-color:#FFE131 !important;
}

.content>figure img,
.content>img,
.content>p img,
.wp-block-image img,
.lazy-img{
    background-color:#202020 !important;
}

.content>table td,
.content>table th,
.wp-block-table table td,
.wp-block-table table th{
    background-color:#151515 !important;
    border-bottom-color:rgba(255,225,49,.12) !important;
}

.content>table tr:first-of-type td,
.content>table tr:first-of-type th,
.wp-block-table table tr:first-of-type td,
.wp-block-table table tr:first-of-type th{
    color:#020202 !important;
    background-color:#FFE131 !important;
}

.wp-block-quote{
    border-left-color:#FFE131 !important;
    background:rgba(255,225,49,.10) !important;
}

.toc,
.article-toc-box,
.review-card{
    border-color:rgba(255,225,49,.26) !important;
}

.review-card{
    background:linear-gradient(160deg,rgba(255,225,49,.10),rgba(255,225,49,.03)),#121212 !important;
    box-shadow:0 14px 34px rgba(0,0,0,.38) !important;
}

.review-card__rating,
.top-bonus__type{
    color:#FFE131 !important;
}

.header__logo-link::before{
    background:linear-gradient(90deg,rgba(255,225,49,.34),rgba(255,225,49,.10)) !important;
    box-shadow:0 4px 22px rgba(255,225,49,.18) !important;
}

.scrollbar{
    scrollbar-color:#FFE131 #020202 !important;
}

.scrollbar::-webkit-scrollbar-track{
    background-color:#020202 !important;
}

.scrollbar::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb:hover{
    background-color:#FFE131 !important;
}

.hero{
    background-color:#020202 !important;
    background-image:none !important;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        linear-gradient(90deg,rgba(2,2,2,.88) 0%,rgba(2,2,2,.68) 38%,rgba(2,2,2,.18) 72%),
        linear-gradient(0deg,rgba(2,2,2,.34),rgba(2,2,2,.18));
}

.hero__container{
    z-index:2 !important;
}

.hero__container > div:not(.hero__tag){
    max-width:520px;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(2,2,2,.66);
    border:1px solid rgba(255,225,49,.26);
    box-shadow:0 18px 42px rgba(0,0,0,.38);
    backdrop-filter:blur(4px);
}

.hero__title,
.hero__subtitle{
    max-width:480px !important;
    color:#ffffff !important;
    text-shadow:0 2px 12px rgba(0,0,0,.82),0 1px 2px rgba(0,0,0,.95);
}

.hero__title{
    color:#FFE131 !important;
}

.hero__tag{
    color:#020202 !important;
    background:#FFE131 !important;
    box-shadow:0 8px 22px rgba(0,0,0,.28);
}

@media screen and (max-width:768px){
    .hero::before{
        background:linear-gradient(0deg,rgba(2,2,2,.74),rgba(2,2,2,.42));
    }

    .hero__container > div:not(.hero__tag){
        width:100%;
        padding:14px 16px;
        border-radius:14px;
    }
}

:root{
    --rp-bg:#090708;
    --rp-surface:#171113;
    --rp-surface-2:#21171a;
    --rp-line:rgba(255,122,38,.28);
    --rp-yellow:#ff7a26;
    --rp-yellow-hover:#ff9852;
    --rp-green:#43f2a7;
    --rp-text:#fff7ef;
    --rp-muted:#decfc4;
}

.body{
    color:var(--rp-muted) !important;
    background-color:var(--rp-bg) !important;
}

.header,
.menu,
.menu__dropdown,
.footer__top-wrapper,
.container--col-2 .toc__btn{
    background-color:#090a08 !important;
}

.footer,
.footer__middle,
.tile,
.tile-footer,
.content--light,
.article-toc-box,
.promo__item-timer,
.tag--timer,
.popup-bonus,
.review-card{
    background-color:var(--rp-surface) !important;
}

.content>h1,
.content>h2,
.content>h3,
.light,
.top-bonus__title,
.popup-bonus__value,
.review-card__name{
    color:var(--rp-text) !important;
}

.footer-menu .footer-menu__link,
.footer .footer-menu .footer-menu__link,
.footer-menu__link,
.menu__link,
.submenu .menu__link,
.popup-bonus__characteristic,
.popup-bonus__key,
.review-card__text,
.article-toc-box__title,
.article-toc-box__icon,
.article-toc-box__list li a:not([class]){
    color:var(--rp-muted) !important;
}

.btn--primary,
.faq__question{
    color:#160804 !important;
    background-color:var(--rp-yellow) !important;
}

.btn--primary svg{
    fill:#160804 !important;
}

.btn--primary:hover,
.btn--primary:focus{
    background-color:var(--rp-yellow-hover) !important;
    box-shadow:0 8px 22px rgba(255,122,38,.34) !important;
}

.btn--primary:active{
    background-color:#df5b12 !important;
}

.btn--secondary,
.btn--bordered,
.slider-nav::before{
    background-color:var(--rp-surface-2) !important;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--bordered:hover{
    background-color:#232719 !important;
}

.btn--bordered{
    border-color:rgba(255,218,49,.32) !important;
}

.link,
.content a:not([class]),
.menu__link:hover,
.menu__item--dropdown:hover > .menu__link,
.menu__item--dropdown:focus > .menu__link,
.submenu .menu__link:hover,
.container--col-2 .toc__link:hover,
.footer-menu .footer-menu__link:hover,
.footer .footer-menu .footer-menu__link:hover,
.footer-menu__link:hover,
.promo-code__code{
    color:var(--rp-yellow) !important;
}

.review-card__rating,
.top-bonus__type{
    color:var(--rp-green) !important;
}

.icon-arrow-right,
.icon-arrow-down,
.icon-email,
.menu__item--dropdown:hover > .menu__arrow svg,
.menu__item--dropdown:focus > .menu__arrow svg{
    fill:var(--rp-yellow) !important;
}

.menu__item--dropdown:hover > .menu__arrow::before,
.menu__item--dropdown:focus > .menu__arrow::before{
    border-right-color:var(--rp-yellow) !important;
    border-bottom-color:var(--rp-yellow) !important;
}

.content>ul:not([class]) li::before,
ul.wp-block-list li::before,
.content>ol:not([class]) li:before{
    background-color:var(--rp-yellow) !important;
    color:#160804 !important;
}

.content>table td,
.content>table th,
.wp-block-table table td,
.wp-block-table table th{
    background-color:#11130e !important;
    border-bottom-color:var(--rp-line) !important;
}

.content>table tr:first-of-type td,
.content>table tr:first-of-type th,
.wp-block-table table tr:first-of-type td,
.wp-block-table table tr:first-of-type th{
    color:#160804 !important;
    background-color:var(--rp-yellow) !important;
}

.wp-block-quote{
    border-left-color:var(--rp-yellow) !important;
    background:rgba(255,122,38,.09) !important;
}

.toc,
.article-toc-box,
.review-card{
    border-color:var(--rp-line) !important;
}

.review-card{
    background:linear-gradient(180deg,rgba(255,122,38,.08),rgba(67,242,167,.035)),var(--rp-surface) !important;
    box-shadow:0 14px 34px rgba(0,0,0,.34) !important;
}

.header__logo-link::before{
    background:linear-gradient(90deg,rgba(255,122,38,.42),rgba(67,242,167,.14)) !important;
    box-shadow:0 4px 22px rgba(255,122,38,.22) !important;
}

.footer__top-wrapper{
    border-top:1px solid var(--rp-line) !important;
    border-bottom:1px solid var(--rp-line) !important;
}

.hero{
    background-color:#090708 !important;
}

.hero::before{
    background:
        linear-gradient(90deg,rgba(9,7,8,.9) 0%,rgba(9,7,8,.68) 40%,rgba(9,7,8,.18) 76%),
        linear-gradient(0deg,rgba(255,122,38,.18),rgba(67,242,167,.08)) !important;
}

.hero__container > div:not(.hero__tag){
    background:rgba(9,7,8,.70) !important;
    border-color:rgba(255,122,38,.34) !important;
}

.hero__title{
    color:var(--rp-yellow) !important;
}

.hero__subtitle{
    color:var(--rp-text) !important;
}

.hero__tag{
    color:#07120c !important;
    background:var(--rp-green) !important;
}

.scrollbar{
    scrollbar-color:var(--rp-yellow) var(--rp-bg) !important;
}

.scrollbar::-webkit-scrollbar-track{
    background-color:var(--rp-bg) !important;
}

.scrollbar::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb:hover{
    background-color:var(--rp-yellow) !important;
}

/* Let the page scroll normally when pointer starts on sliders. */
.swiffy-slider,
.hero-slider,
.slider-container{
    touch-action:pan-y !important;
    overscroll-behavior-y:auto !important;
}

.hero-slider{
    overscroll-behavior:auto !important;
}

@media screen and (max-width:599px){
    .slider-item-show4 .slider-container{
        touch-action:pan-x pan-y !important;
        overscroll-behavior-x:contain !important;
        overscroll-behavior-y:auto !important;
    }
}
