:root {
    --c-header: #11dbe8;
    --c-header-dark: #0db8c4;
    --c-btn-blue: #00b4ff;
    --c-btn-yellow: #ffea00;
    --c-bg: #012f53;
    --c-bg-card: #013a66;
    --c-bg-card2: #01294a;
    --c-text: #e8f4ff;
    --c-text-muted: #8ab4d4;
    --c-text-dark: #012f53;
    --c-accent: #11dbe8;
    --c-border: #1a5278;
    --c-plus: #1aeb8a;
    --c-minus: #ff4d6d;
    --radius: 12px;
    --radius-sm: 7px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--c-btn-blue);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--c-accent);
}

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

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

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

.box {
    width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--c-header);
    box-shadow: 0 2px 12px rgba(0, 180, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.hdr-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text-dark);
    font-weight: 600;
    white-space: nowrap;
}

.online-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 1.4s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .6;
        transform: scale(1.3);
    }
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hdr-nav a {
    color: var(--c-text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .18s, color .18s;
}

.hdr-nav a:hover {
    background: rgba(1, 47, 83, 0.13);
    color: var(--c-bg);
}

.hdr-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn--blue {
    background: var(--c-btn-blue);
    color: #fff;
}

.btn--yellow {
    background: var(--c-btn-yellow);
    color: var(--c-text-dark);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--c-btn-blue);
    color: var(--c-btn-blue);
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 17px;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: rgba(1, 47, 83, 0.18);
    border: none;
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-dark);
    transition: background .18s;
}

.lang-btn:hover {
    background: rgba(1, 47, 83, 0.28);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 130px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 999;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--c-text);
    font-size: 14px;
    transition: background .15s;
}

.lang-menu a:hover {
    background: rgba(17, 219, 232, 0.13);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text-dark);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg);
    z-index: 998;
    padding: 20px 16px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
    border-top: 2px solid var(--c-accent);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-weight: 600;
    font-size: 15px;
    transition: background .15s;
}

.mobile-menu a:hover {
    background: rgba(17, 219, 232, 0.1);
}

.mobile-menu svg {
    width: 18px;
    height: 18px;
    color: var(--c-accent);
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #011e36 0%, #012f53 60%, #013a66 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/big-bass-hero.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.38;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 47, 83, 0.92) 0%, rgba(1, 47, 83, 0.5) 60%, rgba(1, 47, 83, 0.1) 100%);
    z-index: 1;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 219, 232, 0.15);
    border: 1px solid var(--c-accent);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 18px;
    animation: fadeInDown .6s ease;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    animation: fadeInDown .7s ease;
}

.hero h1 span {
    color: var(--c-accent);
}

.hero-desc {
    font-size: 17px;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeInDown .8s ease;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInDown .9s ease;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeInDown 1s ease;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
}

.hero-stat span {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 56px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-sub {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.section-title span {
    color: var(--c-accent);
}

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-cons-block {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.pros-cons-block h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-cons-block.pros h3 {
    color: var(--c-plus);
}

.pros-cons-block.cons h3 {
    color: var(--c-minus);
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.5;
}

.pros-cons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px;
}

.pros .pros-cons-list li::before {
    background: var(--c-plus);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3a1 1 0 0 0-1.4 0L8 12.6 4.7 9.3a1 1 0 0 0-1.4 1.4l4 4a1 1 0 0 0 1.4 0l8-8a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cons .pros-cons-list li::before {
    background: var(--c-minus);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M14.3 5.7a1 1 0 0 0-1.4 0L10 8.6 7.1 5.7a1 1 0 0 0-1.4 1.4L8.6 10l-2.9 2.9a1 1 0 0 0 1.4 1.4L10 11.4l2.9 2.9a1 1 0 0 0 1.4-1.4L11.4 10l2.9-2.9a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================
   JACKPOTS
   ============================================================ */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jackpot-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    padding: 28px 20px 22px;
    text-align: center;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.jackpot-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #f5c065);
}

.jackpot-card.silver::before {
    background: linear-gradient(90deg, #9e9e9e, #e0e0e0);
}

.jackpot-card.gold::before {
    background: linear-gradient(90deg, #ffca00, #ff8c00);
}

.jackpot-icon {
    font-size: 38px;
    margin-bottom: 8px;
    line-height: 1;
}

.jackpot-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1;
}

.jackpot-card.bronze .jackpot-amount {
    color: #f5c065;
}

.jackpot-card.silver .jackpot-amount {
    color: #e0e0e0;
}

.jackpot-card.gold .jackpot-amount {
    color: #ffca00;
}

.jackpot-players {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.jackpot-player {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 13px;
}

.jackpot-player-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-dark);
    flex-shrink: 0;
}

.jackpot-player-name {
    font-weight: 600;
    color: var(--c-text);
    flex: 1;
    text-align: left;
}

.jackpot-player-win {
    color: var(--c-plus);
    font-weight: 700;
    font-size: 12px;
}

/* ============================================================
   BONUSES / CASINO CARDS
   ============================================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s;
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card-head {
    background: linear-gradient(135deg, #013a66, #01294a);
    padding: 18px 20px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--c-border);
}

.bonus-casino-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--c-text-dark);
    flex-shrink: 0;
}

.bonus-casino-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
}

.bonus-casino-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    color: #ffca00;
    margin-top: 2px;
}

.bonus-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-amount {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--c-btn-yellow);
    line-height: 1;
}

.bonus-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.bonus-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bonus-tag {
    background: rgba(17, 219, 232, 0.1);
    border: 1px solid rgba(17, 219, 232, 0.25);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--c-accent);
    font-weight: 600;
}

.bonus-card-foot {
    padding: 14px 20px;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-terms {
    font-size: 11px;
    color: var(--c-text-muted);
}

/* SLIDER ONLY ON MOBILE */
@media (max-width: 767px) {
    .bonus-slider-wrap {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 16px;
        padding-bottom: 10px;
    }

    .bonus-slider-wrap .bonus-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }
}

.demo-block {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.demo-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--c-accent), #0090d4);
    gap: 12px;
    flex-wrap: wrap;
}

.demo-topbar-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--c-text-dark);
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

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

.demo-foot {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid var(--c-border);
}

.demo-info {
    font-size: 13px;
    color: var(--c-text-muted);
}

.demo-info strong {
    color: var(--c-text);
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-card {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.strategy-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #013a66, #01294a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #013a66 0%, #011e36 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.strategy-body {
    padding: 18px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(17, 219, 232, 0.12);
    border: 1px solid rgba(17, 219, 232, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 4px;
}

.strategy-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.3;
}

.strategy-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
    flex: 1;
}

.strategy-foot {
    padding: 0 18px 18px;
}

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

.faq-item {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.open {
    border-color: var(--c-accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
    user-select: none;
    transition: background .15s;
}

.faq-question:hover {
    background: rgba(17, 219, 232, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(17, 219, 232, 0.1);
    border: 1px solid var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--c-accent);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    color: var(--c-accent);
}

.faq-item.open .faq-icon svg {
    color: var(--c-text-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 20px 18px;
}

.content-review {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 32px 36px;
    box-shadow: var(--shadow);
}

.content-review h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-text);
    margin: 24px 0 10px;
}

.content-review h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-accent);
    margin: 18px 0 8px;
}

.content-review p {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

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

.content-review li {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 6px;
}

.content-review a {
    color: var(--c-btn-blue);
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    overflow-x: auto;
    display: block;
}

.content-review table th, .content-review table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px;
    text-align: left;
}

.content-review table th {
    background: rgba(17, 219, 232, 0.08);
    color: var(--c-accent);
    font-weight: 700;
}

.content-review table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.content-review strong {
    color: var(--c-text);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 22px 26px;
    box-shadow: var(--shadow);
}

.author-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-accent), var(--c-btn-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--c-text-dark);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
}

.site-footer {
    background: var(--c-header);
    color: var(--c-text-dark);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(1, 47, 83, 0.2);
    margin-bottom: 24px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(1, 47, 83, 0.7);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-bg);
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 13px;
    color: rgba(1, 47, 83, 0.75);
    transition: color .2s;
}

.footer-col ul a:hover {
    color: var(--c-bg);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(1, 47, 83, 0.15);
    margin-bottom: 18px;
}

.payment-badge {
    background: rgba(1, 47, 83, 0.12);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-bg);
    border: 1px solid rgba(1, 47, 83, 0.2);
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(1, 47, 83, 0.1);
    border: 1px solid rgba(1, 47, 83, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-bg);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
}

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

.footer-provider-label {
    font-size: 12px;
    color: rgba(1, 47, 83, 0.6);
}

.footer-provider-logo {
    height: 28px;
    opacity: .8;
}

.footer-legal {
    font-size: 11px;
    color: rgba(1, 47, 83, 0.6);
    line-height: 1.6;
}

.footer-copy {
    font-size: 12px;
    color: rgba(1, 47, 83, 0.7);
    margin-top: 8px;
}

.tech-content {
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 32px 36px;
    box-shadow: var(--shadow);
    margin: 32px 0 48px;
}

.tech-content h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-accent);
    margin: 24px 0 10px;
}

.tech-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 16px 0 8px;
}

.tech-content p {
    font-size: 15px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

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

.tech-content li {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 6px;
}

.tech-content a {
    color: var(--c-btn-blue);
}

.tech-content strong {
    color: var(--c-text);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text-muted);
    padding: 14px 0 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--c-text-muted);
}

.breadcrumb a:hover {
    color: var(--c-accent);
}

.breadcrumb span {
    color: var(--c-accent);
}

/* ============================================================
   HIDDEN/UNUSED (WP compat, uniqueness)
   ============================================================ */
.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.site-main {
    display: block;
}

.x9f2a3b {
    display: none;
}

.qr7t1p {
    display: none;
}

.bv82nl {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.wp-caption {
    display: none;
}

.alignleft, .alignright, .aligncenter {
    display: inline-block;
}

#wpadminbar {
    display: none;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--c-text-muted);
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.w-100 {
    width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    .jackpot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .burger {
        display: flex;
    }

    .hdr-right .lang-dropdown {
        display: none;
    }

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

    .jackpot-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        display: none;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-btns {
        gap: 10px;
    }

    .section {
        padding: 36px 0;
    }

    .content-review {
        padding: 20px 16px;
    }

    .tech-content {
        padding: 20px 16px;
    }

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

    .author-card .author-avatar {
        margin: 0 auto;
    }

    .footer-payments {
        justify-content: center;
    }

    .footer-trust {
        justify-content: center;
    }

    .demo-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }
}

@media (max-width: 479px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 15px;
    }
}

.yhdgf {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, var(--c-bg-card), var(--c-bg-card2));
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.yhdgf h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--c-text);
    line-height: 1.3;
}

.yhdgf h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
}

.yhdgf h3 {
    font-size: 18px;
    margin: 22px 0 10px;
    color: var(--c-accent);
}

.yhdgf p {
    margin-bottom: 14px;
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.yhdgf ul,
.yhdgf ol {
    margin: 14px 0;
    padding-left: 22px;
}

.yhdgf li {
    margin-bottom: 6px;
    color: var(--c-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.yhdgf a {
    color: var(--c-btn-blue);
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.yhdgf strong {
    color: var(--c-text);
}

@media (max-width: 768px) {
    .yhdgf {
        margin: 26px 12px;
        padding: 22px 16px;
    }

    .yhdgf h1 {
        font-size: 22px;
    }

    .yhdgf h2 {
        font-size: 18px;
        margin-top: 24px;
    }

    .yhdgf h3 {
        font-size: 16px;
    }

    .yhdgf p,
    .yhdgf li {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .yhdgf {
        margin: 18px 10px;
        padding: 18px 14px;
    }

    .yhdgf h1 {
        font-size: 20px;
    }

    .yhdgf h2 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .bonus-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .bonus-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        border-radius: 14px;
    }

    .bonus-card-head {
        padding: 14px;
    }

    .bonus-card-body {
        padding: 14px;
    }

    .bonus-card-foot {
        padding: 12px 14px;
    }

    .bonus-amount {
        font-size: 20px;
    }

    .bonus-desc {
        font-size: 13px;
    }

    .bonus-casino-logo {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

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

    .bonus-card .btn {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        flex: 0 0 92%;
    }

    .bonus-amount {
        font-size: 18px;
    }

    .bonus-desc {
        font-size: 12.5px;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

body {
    padding-top: 70px;
}