@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    --clr-bg: #100f2c;
    --clr-header: #29274f;
    --clr-primary: #c30151;
    --clr-secondary: #7b069a;
    --clr-text: #e8e6f0;
    --clr-text-muted: #a09cbf;
    --clr-card: #1c1a42;
    --clr-card-border: #2e2b5e;
    --clr-gold: #f0c040;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .22s ease;
    --font: 'Inter', sans-serif;
}

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

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

a {
    color: var(--clr-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-primary);
}

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 {
    border-radius: var(--radius-md);
}

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

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

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

.btn--primary {
    background: var(--clr-primary);
    color: #fff;
}

.btn--secondary {
    background: var(--clr-secondary);
    color: #fff;
}

.btn--gold {
    background: var(--clr-gold);
    color: #100f2c;
}

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

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

.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;
}

/* ===== HEADER ===== */
.header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .88rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .09);
    color: #fff;
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.casino-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, .07);
    border-radius: 20px;
    font-size: .75rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 6px #3ddc84;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

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

.player-count {
    color: var(--clr-gold);
    font-weight: 600;
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.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);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-banner.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 15, 44, .92) 40%, rgba(16, 15, 44, .4) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(195, 1, 81, .15);
    border: 1px solid rgba(195, 1, 81, .4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

.hero h1 span {
    color: var(--clr-primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.hero-bonus {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 192, 64, .1);
    border: 1px solid rgba(240, 192, 64, .3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-top: 28px;
}

.hero-bonus-icon {
    font-size: 1.6rem;
}

.hero-bonus-text {
    font-size: .9rem;
    color: var(--clr-text-muted);
}

.hero-bonus-text strong {
    display: block;
    color: var(--clr-gold);
    font-size: 1.1rem;
}

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

.section--alt {
    background: rgba(28, 26, 66, .5);
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    font-size: .97rem;
}

.section-header {
    margin-bottom: 36px;
}

.section-header .section-title {
    margin-bottom: 6px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary), transparent);
    border: none;
    margin: 4px 0 28px;
    width: 80px;
    border-radius: 2px;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-size: .88rem;
    font-weight: 500;
    transition: all var(--transition);
}

.toc-item:hover {
    background: rgba(195, 1, 81, .15);
    border-color: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}

.toc-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-secondary);
}

.toc-item:hover svg {
    color: var(--clr-primary);
}

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

.jackpot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.jackpot-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
}

.jackpot-card:nth-child(2)::before {
    background: linear-gradient(90deg, #c0c0c0, #808080);
}

.jackpot-card:nth-child(3)::before {
    background: linear-gradient(90deg, #cd7f32, #8b4513);
}

.jackpot-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.jackpot-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.jackpot-name {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.jackpot-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-gold);
    font-variant-numeric: tabular-nums;
}

.jackpot-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

/* ===== PAYMENT TABLE ===== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-card-border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
}

thead {
    background: rgba(195, 1, 81, .15);
}

th {
    padding: 14px 16px;
    text-align: left;
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text);
    white-space: nowrap;
    border-bottom: 1px solid var(--clr-card-border);
}

td {
    padding: 13px 16px;
    font-size: .875rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid rgba(46, 43, 94, .5);
    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover td {
    background: rgba(255, 255, 255, .03);
}

.payment-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-logo-icon {
    width: 36px;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
}

.payment-logo-icon svg {
    width: 100%;
    height: 100%;
}

.payment-logo-name {
    font-weight: 500;
    color: var(--clr-text);
    font-size: .88rem;
}

/* ===== TOURNAMENTS ===== */
.tournament-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.tournament-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tournament-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tournament-badge {
    padding: 3px 9px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    background: rgba(195, 1, 81, .2);
    color: var(--clr-primary);
}

.tournament-name {
    font-size: .97rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.tournament-desc {
    font-size: .8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.tournament-prize {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--clr-text-muted);
}

.tournament-timer svg {
    width: 14px;
    height: 14px;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.timer-display {
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.tournament-cta {
    margin-top: 4px;
}

.tournament-cta .btn {
    width: 100%;
}

/* ===== SLOT MINI GAME ===== */
.slot-wrap {
    max-width: 480px;
    margin: 0 auto;
}

.slot-machine {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}

.slot-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.slot-subtitle {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.reel {
    width: 80px;
    height: 90px;
    background: #0d0c25;
    border: 2px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative;
}

.reel.spinning {
    animation: spin-reel .12s linear infinite;
}

@keyframes spin-reel {
    0% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-4px);
    }
}

.slot-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.slot-result {
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    display: none;
}

.slot-result.win {
    display: block;
    background: rgba(61, 220, 132, .1);
    border: 1px solid rgba(61, 220, 132, .3);
}

.slot-result.lose {
    display: block;
    background: rgba(195, 1, 81, .1);
    border: 1px solid rgba(195, 1, 81, .3);
}

.slot-result-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.slot-result.win .slot-result-title {
    color: #3ddc84;
}

.slot-result.lose .slot-result-title {
    color: var(--clr-primary);
}

.slot-result-desc {
    font-size: .87rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

/* ===== CONTENT REVIEW BLOCK ===== */
.review-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    border: 1px solid var(--clr-card-border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.author-meta {
    flex-grow: 1;
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: .97rem;
}

.author-title {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.author-bio {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: .8rem;
    color: var(--clr-secondary);
}

.review-content {
    line-height: 1.75;
}

.review-content h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin: 16px 0 8px;
}

.review-content p {
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    font-size: .95rem;
}

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

.review-content li {
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-size: .95rem;
}

.review-content strong, .review-content b {
    color: var(--clr-text);
    font-weight: 600;
}

.review-content em, .review-content i {
    color: var(--clr-text);
}

.review-content a {
    color: var(--clr-secondary);
}

.review-content a:hover {
    color: var(--clr-primary);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.review-content th {
    background: rgba(195, 1, 81, .15);
    padding: 10px 14px;
    text-align: left;
    font-size: .85rem;
    color: var(--clr-text);
    border: 1px solid var(--clr-card-border);
}

.review-content td {
    padding: 10px 14px;
    font-size: .875rem;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-card-border);
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 10px 18px;
    background: rgba(195, 1, 81, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--clr-text);
}

/* ===== REGISTRATION STEPS ===== */
.steps-table {
    width: 100%;
    border-collapse: collapse;
}

.steps-table th {
    padding: 13px 16px;
    background: rgba(123, 6, 154, .15);
    text-align: left;
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-card-border);
}

.steps-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(46, 43, 94, .4);
    font-size: .875rem;
    color: var(--clr-text-muted);
    vertical-align: top;
}

.steps-table tbody tr:last-child td {
    border-bottom: none;
}

.steps-table tbody tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    flex-shrink: 0;
}

.step-title {
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 4px;
    font-size: .92rem;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(195, 1, 81, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

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

details[open] .faq-icon {
    transform: rotate(180deg);
    background: rgba(195, 1, 81, .35);
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--clr-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--clr-secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--clr-header);
    margin-top: auto;
    padding: 48px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

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

.footer-tagline {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: var(--clr-text-muted);
}

.footer-col-title {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

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

.footer-links a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.age-badge {
    background: rgba(195, 1, 81, .15);
    border-color: rgba(195, 1, 81, .3);
    color: var(--clr-primary);
    font-size: .85rem;
    font-weight: 700;
    padding: 5px 10px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--clr-primary);
    color: #fff;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: .77rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.provider-chip {
    padding: 4px 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 4px;
    font-size: .75rem;
    color: var(--clr-text-muted);
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1c1a42 0%, #29274f 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .5);
}

.widget-text {
    display: flex;
    flex-direction: column;
}

.widget-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.widget-desc {
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.widget-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.widget-close {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 1.1rem;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

/* ===== SECTION TRANSITIONS ===== */
.section-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}

.section-fade.visible {
    opacity: 1;
    transform: none;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .tournament-slider {
        grid-template-columns: 1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 14px;
    }

    .tournament-card {
        min-width: 260px;
        scroll-snap-align: start;
    }

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

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-header);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 1001;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        font-size: 1rem;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .casino-status {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 1002;
    }

    .hero {
        min-height: 420px;
    }

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

    .jackpot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-wrap {
        padding: 20px;
    }

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

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

    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jackpot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

.xd7r2-hidden-res {
    display: none !important;
}

.wp-block-group {
    --wp--style--block-gap: 1.5em;
}

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

.wp-block-spacer {
    clear: both;
}

/* ===== MISC ===== */
.text-center {
    text-align: center;
}

.mt1 {
    margin-top: 8px;
}

.mb1 {
    margin-bottom: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mb2 {
    margin-bottom: 16px;
}

.text-gold {
    color: var(--clr-gold);
}

.text-primary {
    color: var(--clr-primary);
}

.badge-new {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--clr-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-left: 6px;
}

.badge-hot {
    background: #ff6b00;
}

[id] {
    scroll-margin-top: 80px;
}

.slot-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(195, 1, 81, .4);
    transform: translateY(-50%);
    pointer-events: none;
}

.info-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
}

.info-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

.info-content p {
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-size: .93rem;
    line-height: 1.7;
}

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

.info-content li {
    color: var(--clr-text-muted);
    margin-bottom: 5px;
    font-size: .93rem;
}

.info-content a {
    color: var(--clr-secondary);
}

.info-content strong {
    color: var(--clr-text);
}

.qx91b-offscreen {
    clip-path: inset(50%);
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}

.p3m7k {
    font-feature-settings: "tnum";
}

.z5w2n {
    isolation: isolate;
}

.r8q4j::placeholder {
    color: rgba(255, 255, 255, .3);
}

.v6d1x {
    backface-visibility: hidden;
}

.bvcdf {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 32px;
    margin: 40px auto;
    background: linear-gradient(180deg, rgba(28, 26, 66, .96), rgba(18, 16, 44, .96));
    border: 1px solid rgba(195, 1, 81, .25);
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.bvcdf > *:first-child {
    margin-top: 0;
}

.bvcdf > *:last-child {
    margin-bottom: 0;
}

.bvcdf h1,
.bvcdf h2,
.bvcdf h3,
.bvcdf h4,
.bvcdf h5,
.bvcdf h6 {
    color: #fff;
    line-height: 1.3;
    margin: 1.6rem 0 .8rem;
    word-break: break-word;
}

.bvcdf p {
    color: #cfcde4;
    font-size: .96rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bvcdf ul,
.bvcdf ol {
    margin: 1rem 0;
    padding-left: 22px;
}

.bvcdf li {
    color: #cfcde4;
    line-height: 1.75;
    margin-bottom: .45rem;
}

.bvcdf a {
    color: #c30151;
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.bvcdf strong,
.bvcdf b {
    color: #fff;
}

.bvcdf img,
.bvcdf svg,
.bvcdf video,
.bvcdf canvas {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.bvcdf iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 16px;
}

.bvcdf table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #1c1a42;
}

.bvcdf table th {
    background: #29274f;
    color: #fff;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
}

.bvcdf table td {
    padding: 14px;
    color: #d7d5e8;
    border: 1px solid rgba(255, 255, 255, .08);
    vertical-align: top;
}

.bvcdf blockquote {
    margin: 20px 0;
    padding: 18px 22px;
    border-left: 4px solid #c30151;
    background: rgba(195, 1, 81, .08);
    border-radius: 0 14px 14px 0;
    color: #fff;
}

.bvcdf pre {
    max-width: 100%;
    overflow: auto;
    padding: 18px;
    border-radius: 14px;
    background: #141233;
}

.bvcdf code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.bvcdf hr {
    margin: 28px 0;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

.bvcdf * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bvcdf table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {

    .bvcdf {
        padding: 20px 16px;
        margin: 24px auto;
        border-radius: 18px;
    }

    .bvcdf h1 {
        font-size: 1.8rem;
    }

    .bvcdf h2 {
        font-size: 1.45rem;
    }

    .bvcdf h3 {
        font-size: 1.2rem;
    }

    .bvcdf p,
    .bvcdf li {
        font-size: .92rem;
    }

    .bvcdf table {
        min-width: 520px;
    }

    .bvcdf iframe {
        min-height: 240px;
    }
}

@media (max-width: 480px) {

    .bvcdf {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .bvcdf table {
        min-width: 460px;
    }

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

    .bvcdf iframe {
        min-height: 200px;
    }
}