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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #f0f4f8;
    background-color: #69ACBD;
    min-height: 100vh
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #2967C7;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #1a50a0
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.page-content-wrap {
    flex: 1;
    padding: 20px 16px
}

.box {
    border-radius: 14px;
    overflow: hidden
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #3A3A3A;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .35)
}

.hdr-box {
    padding: 0
}

.hdr-inner {
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 8px
}

.hdr-logo-wrap {
    flex-shrink: 0
}

.hdr-logo img {
    height: 44px;
    width: auto
}

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center
}

.hdr-nav-list {
    display: flex;
    gap: 4px;
    list-style: none
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 8px;
    color: #e0e6ef;
    font-size: 13px;
    font-weight: 500;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.hdr-nav-link:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.hdr-actions-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.hdr-online {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #a0aec0;
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48bb78;
    animation: pulse 2s infinite
}

.online-count {
    font-weight: 700;
    color: #48bb78
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .5
    }
}

.hdr-cta-btns {
    display: flex;
    gap: 8px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .2s;
    white-space: nowrap;
    border: none
}

.btn--blue {
    background: #2967C7;
    color: #fff
}

.btn--blue:hover {
    background: #1a50a0;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(41, 103, 199, .4)
}

.btn--yellow {
    background: #F5B337;
    color: #1a202c
}

.btn--yellow:hover {
    background: #e0a020;
    color: #1a202c;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 179, 55, .4)
}

.btn--green {
    background: #2ecc71;
    color: #fff
}

.btn--green:hover {
    background: #27ae60;
    color: #fff
}

.btn--outline {
    background: transparent;
    border: 2px solid #2967C7;
    color: #2967C7
}

.btn--outline:hover {
    background: #2967C7;
    color: #fff
}

.btn--sm {
    padding: 7px 16px;
    font-size: 13px
}

.btn--md {
    padding: 9px 20px;
    font-size: 14px
}

.btn--lg {
    padding: 13px 30px;
    font-size: 16px
}

.btn--full {
    width: 100%;
    justify-content: center
}

.btn:active {
    transform: translateY(0) scale(.98)
}

.hdr-lang-wrap {
    position: relative
}

.hdr-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    color: #e0e6ef;
    font-size: 13px;
    font-weight: 500;
    transition: background .2s;
    cursor: pointer;
    border: none;
    font-family: inherit
}

.hdr-lang-btn:hover {
    background: rgba(255, 255, 255, .15)
}

.hdr-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    z-index: 300
}

.hdr-lang-dropdown.open {
    display: block;
    animation: fadeDown .15s ease
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #e0e6ef;
    font-size: 13px;
    transition: background .15s;
    text-decoration: none
}

.lang-opt:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.lang-opt--active {
    background: rgba(41, 103, 199, .3);
    color: #7eb3f5
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    transition: background .2s
}

.hdr-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e0e6ef;
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

.hdr-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hdr-burger.active span:nth-child(2) {
    opacity: 0
}

.hdr-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hdr-burger:hover {
    background: rgba(255, 255, 255, .15)
}

.hdr-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 290;
    backdrop-filter: blur(3px)
}

.hdr-mobile-overlay.open {
    display: block
}

.hdr-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #2a2a2a;
    z-index: 295;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease
}

.hdr-mobile-menu.open {
    display: flex;
    transform: translateX(0)
}

.mob-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mob-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    color: #e0e6ef;
    transition: background .2s
}

.mob-menu-close:hover {
    background: rgba(255, 255, 255, .15)
}

.mob-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mob-nav-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #e0e6ef;
    font-size: 15px;
    font-weight: 500;
    transition: background .2s;
    text-decoration: none
}

.mob-nav-link:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.mob-lang-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 12px
}

.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/tower-banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 15, 25, .88) 40%, rgba(10, 15, 25, .3) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 48px;
    max-width: 600px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(41, 103, 199, .25);
    border: 1px solid rgba(41, 103, 199, .5);
    color: #7eb3f5;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.hero-title span {
    color: #F5B337
}

.hero-desc {
    font-size: 16px;
    color: #b0c4d8;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px
}

.hero-stat {
    text-align: center
}

.hero-stat-val {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #F5B337
}

.hero-stat-label {
    font-size: 11px;
    color: #8099b4;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.game-info-bar {
    background: #3A3A3A;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px
}

.game-info-inner {
    gap: 0;
    flex-wrap: wrap
}

.game-info-item {
    flex: 1;
    min-width: 100px;
    padding: 8px 14px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.game-info-item:last-child {
    border-right: none
}

.gi-label {
    display: block;
    font-size: 11px;
    color: #8099b4;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px
}

.gi-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e0e6ef
}

.gi-accent {
    color: #F5B337
}

.gi-link {
    color: #5b9ef5;
    text-decoration: none
}

.gi-link:hover {
    color: #3a7de8
}

.page-h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.25
}

.content-box {
    background: rgba(255, 255, 255, .06);
    padding: 28px 24px;
    margin-bottom: 20px
}

.content-text > .content-block {
    margin-bottom: 32px
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(41, 103, 199, .35);
    position: relative
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #2967C7
}

.section-subtitle {
    font-size: 14px;
    color: #0a0a0a;
    margin-top: 4px;
    font-weight: 400
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.casino-card {
    background: #2a2a2a;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: border-color .2s, transform .2s
}

.casino-card:hover {
    border-color: rgba(41, 103, 199, .4);
    transform: translateY(-2px)
}

.casino-card--top3 {
    border-color: rgba(245, 179, 55, .3);
    background: #2e2a1f
}

.casino-card--top3:hover {
    border-color: rgba(245, 179, 55, .55)
}

.casino-rank {
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #a0aec0;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center
}

.casino-rank--gold {
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: #1a202c
}

.casino-rank--silver {
    background: linear-gradient(135deg, #d0d0d0, #a0a0a0);
    color: #1a202c
}

.casino-rank--bronze {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: #1a202c
}

.casino-logo-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 54px;
    background: #1e1e1e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07)
}

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

.casino-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2
}

.casino-main {
    flex: 1;
    min-width: 180px
}

.casino-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px
}

.casino-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff
}

.casino-flag {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #68d391;
    background: rgba(104, 211, 145, .12);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(104, 211, 145, .25)
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px
}

.casino-stars {
    color: #F5B337;
    font-size: 14px;
    letter-spacing: 1px
}

.casino-score {
    font-weight: 700;
    font-size: 14px;
    color: #F5B337
}

.casino-bonus {
    font-size: 13px;
    color: #e0e6ef;
    margin-bottom: 8px;
    background: rgba(41, 103, 199, .15);
    padding: 5px 10px;
    border-radius: 7px;
    border-left: 3px solid #2967C7
}

.casino-bonus strong {
    color: #7eb3f5
}

.casino-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px
}

.casino-perk {
    font-size: 11px;
    background: rgba(255, 255, 255, .07);
    color: #c0cfe0;
    padding: 3px 9px;
    border-radius: 12px
}

.casino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #8099b4
}

.casino-meta-item span {
    font-weight: 600;
    color: #b0c4d8
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 130px;
    align-self: center
}

.load-more-wrap {
    text-align: center;
    margin-top: 20px
}

#casinos-hidden {
    display: none
}

.winners-section {
    background: #2a2a2a;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 460px
}

.winners-table th {
    background: #1e1e1e;
    color: #8099b4;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 12px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, .07)
}

.winners-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: #e0e6ef;
    font-size: 14px;
    text-align: left
}

.winners-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.winners-table tr:nth-child(-n+3) td {
    color: #fff
}

.wt-rank {
    font-weight: 700;
    color: #F5B337
}

.wt-medal {
    font-size: 16px
}

.wt-win {
    color: #68d391;
    font-weight: 700
}

.wt-mult {
    color: #F5B337;
    font-size: 12px;
    margin-left: 4px
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px
}

.bonus-card {
    background: #2a2a2a;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: transform .2s, border-color .2s;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bonus-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 179, 55, .35)
}

.bonus-card-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.bonus-casino-logo {
    width: 60px;
    height: 40px;
    background: #1e1e1e;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .07)
}

.bonus-casino-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.bonus-type {
    font-size: 11px;
    color: #8099b4
}

.bonus-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F5B337
}

.bonus-desc {
    font-size: 13px;
    color: #b0c4d8;
    line-height: 1.6
}

.bonus-terms {
    font-size: 11px;
    color: #6b7d94;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 10px
}

.bonuses-slider {
    position: relative
}

.slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px
}

.slider-track::-webkit-scrollbar {
    display: none
}

.slider-track .bonus-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(100vw - 80px);
    max-width: 320px
}

.demo-section {
    background: #1e1e1e;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.demo-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.demo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0a0a0a
}

.demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .07);
    flex-wrap: wrap;
    gap: 10px
}

.demo-note {
    font-size: 12px;
    color: #6b7d94
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(41, 103, 199, .35)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    color: #e0e6ef;
    font-size: 15px;
    font-weight: 600;
    gap: 12px;
    user-select: none
}

.faq-question:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s, background .2s;
    color: #8099b4
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(41, 103, 199, .3);
    color: #5b9ef5
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: #b0c4d8;
    font-size: 14px;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn .2s ease
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.author-block {
    background: #2a2a2a;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap
}

.author-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2967C7, #1a50a0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-info {
    flex: 1
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.author-role {
    font-size: 12px;
    color: #F5B337;
    font-weight: 600;
    margin-bottom: 8px
}

.author-bio {
    font-size: 13px;
    color: #b0c4d8;
    line-height: 1.65
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #5b9ef5;
    margin-top: 8px;
    text-decoration: none
}

.author-link:hover {
    color: #3a7de8
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 20px
}

.review-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2967C7, #48bb78);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: #fff
}

.review-date {
    font-size: 11px;
    color: #6b7d94
}

.review-stars {
    color: #F5B337;
    font-size: 13px;
    margin-bottom: 8px
}

.review-text {
    font-size: 13px;
    color: #b0c4d8;
    line-height: 1.6
}

.review-schema-meta {
    display: none
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-top: 16px
}

.pros-box, .cons-box {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.pros-box {
    border-top: 3px solid #48bb78
}

.cons-box {
    border-top: 3px solid #fc8181
}

.pros-cons-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px
}

.pros-box .pros-cons-title {
    color: #68d391
}

.cons-box .pros-cons-title {
    color: #fc8181
}

.pros-cons-list li {
    font-size: 13px;
    color: #b0c4d8;
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5
}

.pros-cons-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48bb78;
    flex-shrink: 0
}

.cons-box .pros-cons-list li::before {
    background: #fc8181
}

.site-footer {
    background: #3A3A3A
}

.footer.box {
    border-radius: 0;
    padding: 36px 24px 20px
}

.footer-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 28px
}

.footer-brand {
    flex: 1;
    min-width: 200px
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px
}

.footer-logo img {
    height: 41px;
    width: auto
}

.footer-desc {
    font-size: 13px;
    color: #0a0a0a;
    line-height: 1.6;
    max-width: 260px
}

.footer-nav-col {
    flex: 1;
    min-width: 140px
}

.footer-nav-title {
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.footer-nav-list li {
    margin-bottom: 7px
}

.footer-nav-list a {
    font-size: 13px;
    color: #0a0a0a;
    transition: color .2s;
    text-decoration: none
}

.footer-nav-list a:hover {
    color: #e0e6ef
}

.footer-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #b0c4d8;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.footer-payments, .footer-trust {
    margin-bottom: 24px
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.footer-payment-logo, .footer-trust-logo {
    background: #2a2a2a;
    border-radius: 7px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center
}

.payment-text-logo, .trust-badge {
    font-size: 12px;
    font-weight: 700;
    color: #b0c4d8
}

.age-badge {
    color: #fc8181;
    font-size: 14px
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px
}

.footer-provider-label {
    font-size: 12px;
    color: #6b7d94
}

.footer-provider-link {
    display: inline-flex;
    align-items: center
}

.footer-provider-link img {
    height: 28px;
    width: auto
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px
}

.footer-legal {
    font-size: 12px;
    color: #6b7d94;
    line-height: 1.65
}


.technical-content {
    background: rgba(255, 255, 255, .06)
}

.technical-content .content-text {
    max-width: 900px
}

.breadcrumbs {
    margin-bottom: 16px
}

.breadcrumb-list {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 13px
}

.breadcrumb-list li {
    color: #8099b4
}

.breadcrumb-list li a {
    color: #5b9ef5;
    text-decoration: none
}

.breadcrumb-list li a:hover {
    color: #3a7de8
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 6px;
    color: #4a5568
}

.text-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.text-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #e0e6ef;
    margin: 18px 0 9px
}

.text-content p {
    font-size: 14px;
    color: #b0c4d8;
    line-height: 1.75;
    margin-bottom: 14px
}

.text-content ul, .text-content ol {
    margin-bottom: 14px;
    padding-left: 20px
}

.text-content li {
    font-size: 14px;
    color: #b0c4d8;
    line-height: 1.7;
    margin-bottom: 6px;
    list-style: disc
}

.text-content ol li {
    list-style: decimal
}

.text-content a {
    color: #5b9ef5;
    text-decoration: underline
}

.text-content a:hover {
    color: #3a7de8
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.text-content th {
    background: #1e1e1e;
    color: #8099b4;
    font-size: 12px;
    padding: 10px 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .1)
}

.text-content td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    color: #b0c4d8;
    font-size: 14px;
    text-align: left
}

.content-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.content-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #e0e6ef;
    margin: 18px 0 9px
}

.content-block p {
    font-size: 14px;
    color: #b0c4d8;
    line-height: 1.75;
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    margin-bottom: 14px;
    padding-left: 20px
}

.content-block li {
    font-size: 14px;
    color: #b0c4d8;
    line-height: 1.7;
    margin-bottom: 6px;
    list-style: disc
}

.content-block ol li {
    list-style: decimal
}

.content-block a {
    color: #5b9ef5;
    text-decoration: underline
}

.content-block a:hover {
    color: #3a7de8
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch
}

.content-block th {
    background: #1e1e1e;
    color: #8099b4;
    font-size: 12px;
    padding: 10px 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .1)
}

.content-block td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    color: #b0c4d8;
    font-size: 14px;
    text-align: left
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.text-center {
    text-align: center
}

.mt1 {
    margin-top: 8px
}

.mb1 {
    margin-bottom: 8px
}

.vx9r2 {
    width: 3px;
    height: 0;
    background: transparent
}

.k1m7n {
    overflow: hidden;
    height: 0
}

.p3q8a {
    display: none
}

.j2b5c {
    visibility: hidden;
    position: absolute;
    left: -9999px
}

@media (max-width: 768px) {
    .hdr-nav-wrap {
        display: none
    }

    .hdr-burger {
        display: flex
    }

    .hdr-online {
        display: none
    }

    .hero-content {
        padding: 30px 24px
    }

    .hero-stats {
        gap: 14px
    }

    .hero-stat-val {
        font-size: 18px
    }

    .game-info-item {
        min-width: 80px;
        padding: 6px 8px
    }

    .gi-value {
        font-size: 12px
    }

    .gi-label {
        font-size: 10px
    }

    .casino-card {
        padding: 14px 16px
    }

    .casino-actions {
        flex-direction: row;
        justify-content: center;
        min-width: unset;
        width: 100%
    }

    .casino-logo-wrap {
        width: 65px;
        height: 44px
    }

    .bonuses-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 6px
    }

    .bonuses-grid .bonus-card {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: calc(100vw - 80px);
        max-width: 300px
    }

    .pros-cons {
        grid-template-columns:1fr
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .footer-top {
        gap: 20px
    }

    .sticky-widget {
        flex-wrap: wrap;
        padding: 8px 14px;
        gap: 8px
    }

    .sw-inner {
        gap: 8px
    }

    .hdr-lang-wrap {
        display: none
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px
    }

    .hero-desc {
        font-size: 14px
    }

    .hero-btns {
        flex-direction: column
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center
    }

    .casino-card {
        flex-direction: column
    }

    .casino-logo-wrap {
        width: 100%;
        height: 50px
    }

    .casino-logo-text {
        font-size: 18px
    }

    .page-content-wrap {
        padding: 12px 8px
    }

    .content-box {
        padding: 16px 12px
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container,
    .page-content-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content-box,
    .content-block {
        width: 100%;
        padding: 14px 10px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .site-header .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hdr-inner {
        padding: 8px 10px;
        gap: 8px;
    }

    .hdr-logo img {
        height: 30px;
        max-width: 110px;
    }

    .hdr-cta-btns .btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .hero-section {
        min-height: auto;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .hero-bg {
        background-position: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 15, 25, .9), rgba(10, 15, 25, .55));
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 28px 16px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 27px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-stat {
        background: rgba(0, 0, 0, .28);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 10px;
        padding: 8px 6px;
    }

    .hero-stat-val {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
        font-size: 13px;
    }

    .section-title {
        font-size: 19px;
        line-height: 1.25;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .section-subtitle {
        font-size: 12.5px;
        line-height: 1.45;
    }

    .casinos-list {
        gap: 12px;
    }

    .casino-card {
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 10px;
        padding: 14px 12px;
        border-radius: 14px;
    }

    .casino-rank {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 13px;
        align-self: start;
    }

    .casino-logo-wrap {
        grid-column: 2;
        width: 100%;
        height: 42px;
        justify-content: flex-start;
        padding-left: 12px;
    }

    .casino-main {
        grid-column: 1 / -1;
        min-width: 0;
        width: 100%;
    }

    .casino-name-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .casino-name {
        font-size: 15px;
        line-height: 1.25;
    }

    .casino-bonus {
        font-size: 12px;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    .casino-perks {
        gap: 6px;
    }

    .casino-perk {
        font-size: 10.5px;
        line-height: 1.3;
    }

    .casino-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        font-size: 10.5px;
        overflow-wrap: anywhere;
    }

    .casino-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 8px;
    }

    .casino-actions .btn {
        width: 100%;
        padding: 10px 8px;
        font-size: 12px;
    }

    .bonuses-grid,
    .reviews-grid,
    .features-grid,
    .jackpots-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: visible;
    }

    .bonus-card,
    .review-card,
    .feature-card,
    .jackpot-card {
        width: 100%;
        max-width: 100%;
        padding: 16px 14px;
        border-radius: 14px;
    }

    .bonus-card-head {
        gap: 10px;
    }

    .bonus-casino-logo {
        width: 54px;
        height: 36px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .bonus-casino-name {
        font-size: 14px;
    }

    .bonus-amount {
        font-size: 23px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .bonus-desc,
    .bonus-terms {
        font-size: 12.5px;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .bonus-card .btn,
    .btn--full {
        width: 100%;
        justify-content: center;
        padding: 11px 12px;
        font-size: 12px;
    }

    .winners-section {
        padding: 12px;
        border-radius: 14px;
    }

    .winners-table-wrap,
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .winners-table {
        min-width: 430px;
    }


    .pros-cons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pros-box,
    .cons-box {
        padding: 14px;
    }

    .faq-question {
        padding: 14px;
        font-size: 13px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.6;
        padding: 0 14px 14px;
    }

    .content-text,
    .text {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .content-text p,
    .content-text li,
    .content-block p,
    .content-block li {
        font-size: 13.5px;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .content-text a,
    .content-block a {
        display: inline-block;
        max-width: 100%;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .content-text table,
    .content-block table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container,
    .page-content-wrap {
        padding-left: 6px;
        padding-right: 6px;
    }

    .content-box,
    .content-block {
        padding: 12px 8px;
    }

    .hdr-cta-btns .btn:first-child {
        display: none;
    }

    .hero-content {
        padding: 24px 12px;
    }

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

    .casino-card {
        grid-template-columns: 30px 1fr;
        padding: 12px 10px;
    }

    .casino-actions {
        grid-template-columns: 1fr;
    }

}

