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

:root {
    --clr-header: #0F3D2E;
    --clr-header-dark: #0a2c20;
    --clr-header-light: #145239;
    --clr-btn-gold: #FFD84D;
    --clr-btn-gold-hover: #f5cc30;
    --clr-btn-red: #FF3B3F;
    --clr-btn-red-hover: #e02e32;
    --clr-bg: #1A1A2E;
    --clr-bg-card: #16213e;
    --clr-bg-card2: #0f3460;
    --clr-text: #e8e8f0;
    --clr-text-muted: #9999b8;
    --clr-text-dark: #c5c5dc;
    --clr-accent: #FFD84D;
    --clr-accent2: #FF3B3F;
    --clr-success: #2ecc71;
    --clr-warning: #f39c12;
    --clr-error: #e74c3c;
    --clr-border: #1e2d50;
    --clr-border-light: #2a3f6f;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --font-fun: 'Fredoka', sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

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

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

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

.container--wide {
    max-width: 1440px;
}

.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
============================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 216, 77, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1260px;
    margin: 0 auto;
}

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

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-family: var(--font-fun);
    font-size: 22px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    letter-spacing: 0.5px;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.nav-link svg {
    flex-shrink: 0;
}

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

.nav-link.active {
    background: rgba(255, 216, 77, 0.12);
    color: var(--clr-btn-gold);
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    padding: 5px 11px;
    font-size: 12px;
    color: #2ecc71;
    white-space: nowrap;
}

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

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

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lang-btn .flag {
    font-size: 16px;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-header-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    min-width: 130px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 200;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: background var(--transition);
    cursor: pointer;
}

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

.lang-item .flag {
    font-size: 16px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--gold {
    background: var(--clr-btn-gold);
    color: #1a1a2e;
    border-color: var(--clr-btn-gold);
}

.btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    border-color: var(--clr-btn-gold-hover);
    box-shadow: 0 4px 16px rgba(255, 216, 77, 0.4);
    transform: translateY(-1px);
}

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

.btn--red:hover {
    background: var(--clr-btn-red-hover);
    border-color: var(--clr-btn-red-hover);
    box-shadow: 0 4px 16px rgba(255, 59, 63, 0.4);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--clr-btn-gold);
    border-color: var(--clr-btn-gold);
}

.btn--outline:hover {
    background: var(--clr-btn-gold);
    color: #1a1a2e;
}

.btn--lg {
    padding: 13px 30px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 6px 14px;
    font-size: 12px;
}

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

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 61, 46, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 80px 20px 40px;
    overflow-y: auto;
}

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

.mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s;
    justify-content: center;
}

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

.mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
}

.mobile-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
}

/* ==============================
   HERO
============================== */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0F3D2E 40%, #1a0a2e 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/time-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(15, 61, 46, 0.5) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100%) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(720deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1260px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 216, 77, 0.12);
    border: 1px solid rgba(255, 216, 77, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-badge span {
    font-size: 14px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-title .highlight {
    color: var(--clr-btn-gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.65;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.hero-meta-item strong {
    color: var(--clr-btn-gold);
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

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

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    flex: 0 0 340px;
    display: flex;
    justify-content: center;
}

.hero-wheel {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: conic-gradient(
            #FFD84D 0deg 60deg,
            #FF3B3F 60deg 120deg,
            #2ecc71 120deg 180deg,
            #3498db 180deg 240deg,
            #e74c3c 240deg 300deg,
            #9b59b6 300deg 360deg
    );
    position: relative;
    animation: spin-slow 20s linear infinite;
    box-shadow: 0 0 40px rgba(255, 216, 77, 0.3);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-wheel::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: var(--clr-bg);
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-wheel-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-family: var(--font-fun);
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    text-align: center;
    line-height: 1.3;
}

/* ==============================
   SECTION COMMON
============================== */
.section {
    padding: 64px 0;
}

.section--sm {
    padding: 40px 0;
}

.section--lg {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 216, 77, 0.1);
    color: var(--clr-btn-gold);
    border: 1px solid rgba(255, 216, 77, 0.25);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-title .accent {
    color: var(--clr-btn-gold);
}

.section-desc {
    font-size: 15px;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==============================
   JACKPOTS
============================== */
.jackpots-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.jackpot-card {
    flex: 1;
    max-width: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.jackpot-card--bronze {
    background: linear-gradient(145deg, #2a1810 0%, #4a2c1a 100%);
    border: 1px solid rgba(205, 127, 50, 0.4);
}

.jackpot-card--silver {
    background: linear-gradient(145deg, #1a1f2e 0%, #2a3550 100%);
    border: 1px solid rgba(192, 192, 200, 0.4);
}

.jackpot-card--gold {
    background: linear-gradient(145deg, #2a1f08 0%, #4a3510 100%);
    border: 2px solid rgba(255, 216, 77, 0.5);
    box-shadow: 0 0 30px rgba(255, 216, 77, 0.15);
}

.jackpot-header {
    padding: 20px 22px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jackpot-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.jackpot-card--bronze .jackpot-icon {
    background: rgba(205, 127, 50, 0.2);
}

.jackpot-card--silver .jackpot-icon {
    background: rgba(192, 192, 200, 0.15);
}

.jackpot-card--gold .jackpot-icon {
    background: rgba(255, 216, 77, 0.15);
}

.jackpot-level {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.jackpot-card--bronze .jackpot-level {
    color: #cd7f32;
}

.jackpot-card--silver .jackpot-level {
    color: #c0c0c8;
}

.jackpot-card--gold .jackpot-level {
    color: var(--clr-btn-gold);
}

.jackpot-amount {
    padding: 0 22px 16px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.jackpot-amount .currency {
    font-size: 18px;
    margin-right: 2px;
    opacity: 0.7;
}

.jackpot-winners {
    padding: 14px 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.jackpot-winners-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.jackpot-winner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
}

.jackpot-winner-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jackpot-winner-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}

.jackpot-winner-avatar.av1 {
    background: #e74c3c;
}

.jackpot-winner-avatar.av2 {
    background: #3498db;
}

.jackpot-winner-avatar.av3 {
    background: #2ecc71;
}

.jackpot-winner-nick {
    color: var(--clr-text);
    font-weight: 500;
}

.jackpot-winner-time {
    font-size: 11px;
    color: var(--clr-text-muted);
}

.jackpot-winner-sum {
    color: var(--clr-btn-gold);
    font-weight: 600;
}

.jackpot-pulse {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/* ==============================
   VIDEO
============================== */
.video-section {
    background: linear-gradient(180deg, transparent, rgba(15, 61, 46, 0.08), transparent);
}

.video-wrap {
    max-width: 820px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16/9;
    position: relative;
}

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

.video-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.video-tab {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.2s;
}

.video-tab.active,
.video-tab:hover {
    background: rgba(255, 216, 77, 0.12);
    color: var(--clr-btn-gold);
    border-color: rgba(255, 216, 77, 0.25);
}

/* ==============================
   BONUSES
============================== */
.bonuses-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bonus-card {
    flex: 1;
    max-width: 380px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.bonus-card-top {
    padding: 24px 22px 18px;
    background: linear-gradient(135deg, rgba(255, 216, 77, 0.06), transparent);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
}

.bonus-casino-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: brightness(1.2);
}

.bonus-casino-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.bonus-badge {
    display: inline-block;
    background: rgba(255, 59, 63, 0.15);
    color: #ff6b6e;
    border: 1px solid rgba(255, 59, 63, 0.25);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-highlight {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    margin-top: 12px;
    margin-bottom: 4px;
    line-height: 1;
}

.bonus-sub {
    font-size: 13px;
    color: var(--clr-text-muted);
}

.bonus-card-body {
    padding: 18px 22px;
    flex: 1;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--clr-text-dark);
}

.bonus-feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #2ecc71;
}

.bonus-pros-cons {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.bonus-pros, .bonus-cons {
    flex: 1;
}

.bonus-pros-title, .bonus-cons-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.bonus-pros-title {
    color: #2ecc71;
}

.bonus-cons-title {
    color: #e74c3c;
}

.bonus-pros li, .bonus-cons li {
    font-size: 12px;
    color: var(--clr-text-muted);
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.bonus-pros li::before {
    content: '+';
    color: #2ecc71;
    font-weight: 700;
}

.bonus-cons li::before {
    content: '−';
    color: #e74c3c;
    font-weight: 700;
}

.bonus-card-footer {
    padding: 16px 22px 22px;
    border-top: 1px solid var(--clr-border);
}

.bonus-card-footer .btn {
    width: 100%;
    justify-content: center;
}

.bonus-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--clr-text-muted);
    justify-content: center;
}

.stars {
    color: var(--clr-btn-gold);
    letter-spacing: 1px;
    font-size: 13px;
}

/* Slider for mobile */
.bonuses-slider-wrap {
    position: relative;
}

/* ==============================
   DEMO GAME
============================== */
.demo-section {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.15), transparent, rgba(15, 61, 46, 0.1));
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.demo-frame-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 216, 77, 0.2);
    box-shadow: 0 0 40px rgba(255, 216, 77, 0.1);
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
}

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

.demo-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.demo-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    flex-wrap: wrap;
}

.demo-cta-text {
    font-size: 14px;
    color: var(--clr-text-muted);
}

.demo-cta-text strong {
    color: #fff;
}

.game-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin-top: 16px;
}

.game-info-item {
    flex: 1;
    min-width: 120px;
    padding: 14px 16px;
    background: var(--clr-bg-card);
    border-right: 1px solid var(--clr-border);
    text-align: center;
}

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

.game-info-label {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.game-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* ==============================
   FAQ
============================== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 216, 77, 0.3);
}

.faq-item.open {
    border-color: rgba(255, 216, 77, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--clr-btn-gold);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 14.5px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

/* ==============================
   AUTHOR BLOCK
============================== */
.author-block {
    max-width: 700px;
    margin: 0 auto;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: 12.5px;
    color: var(--clr-btn-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0a66c2;
    transition: color 0.2s;
}

.author-link:hover {
    color: #1482d8;
}

/* ==============================
   CONTENT BLOCK (голые теги)
============================== */
.content-text h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    line-height: 1.3;
}

.content-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    margin: 22px 0 10px;
    line-height: 1.35;
}

.content-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 18px 0 8px;
}

.content-text p {
    font-size: 15px;
    color: var(--clr-text-dark);
    line-height: 1.75;
    margin-bottom: 14px;
}

.content-text a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: color 0.2s;
}

.content-text a:hover {
    color: var(--clr-btn-gold-hover);
}

.content-text ul, .content-text ol {
    margin: 10px 0 16px 20px;
}

.content-text ul {
    list-style: disc;
}

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

.content-text li {
    font-size: 15px;
    color: var(--clr-text-dark);
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 6px;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.content-text table th {
    background: var(--clr-header);
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-text table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-dark);
    background: var(--clr-bg-card);
}

.content-text table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.content-text blockquote {
    border-left: 3px solid var(--clr-btn-gold);
    padding: 10px 18px;
    background: rgba(255, 216, 77, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.content-text strong {
    color: #fff;
    font-weight: 600;
}

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

.content-text hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 20px 0;
}

/* Table scroll wrap */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ==============================
   FOOTER
============================== */
.site-footer {
    background: var(--clr-header);
    border-top: 2px solid rgba(255, 216, 77, 0.1);
    margin-top: auto;
}

.footer-main {
    padding: 48px 20px 32px;
    max-width: 1260px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-col--wide {
    flex: 1.5;
    min-width: 220px;
}

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

.footer-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

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

.footer-link {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--clr-btn-gold);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.footer-licenses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.license-badge {
    background: rgba(255, 216, 77, 0.07);
    border: 1px solid rgba(255, 216, 77, 0.15);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 216, 77, 0.7);
}

.provider-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    margin-top: 6px;
}

.provider-logo img {
    height: 22px;
    width: auto;
    opacity: 0.8;
}

.footer-bottom {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 1260px;
    margin: 0 auto;
}

.footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 600px;
}

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

.footer-legal-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.age-badge {
    background: rgba(255, 59, 63, 0.15);
    border: 1px solid rgba(255, 59, 63, 0.25);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b6e;
}

/* ==============================
   STICKY WIDGET
============================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0F3D2E 0%, #0a2820 100%);
    border-top: 2px solid rgba(255, 216, 77, 0.3);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.3s;
}

.sticky-widget.hidden {
    transform: translateY(100%);
}

.widget-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

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

.widget-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 63, 0.15);
    border: 1px solid rgba(255, 59, 63, 0.3);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #ff7b7e;
}

.widget-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ==============================
   TECHNICAL PAGES
============================== */
.technical-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.technical-content h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(255, 216, 77, 0.2);
}

.technical-content h2 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.technical-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-btn-gold);
    margin: 20px 0 8px;
}

.technical-content p {
    font-size: 15px;
    color: var(--clr-text-dark);
    line-height: 1.75;
    margin-bottom: 14px;
}

.technical-content ul, .technical-content ol {
    margin: 10px 0 16px 20px;
}

.technical-content ul {
    list-style: disc;
}

.technical-content ol {
    list-style: decimal;
}

.technical-content li {
    font-size: 15px;
    color: var(--clr-text-dark);
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 4px;
}

.technical-content strong {
    color: #fff;
}

.technical-content a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
}

/* ==============================
   MISC UTILITY
============================== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border-light), transparent);
    margin: 0;
}

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.g-xp7b2 {
    display: none;
}

.wp-block-group {
    margin-bottom: 0;
}

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

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb a {
    color: var(--clr-text-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--clr-btn-gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
    .jackpots-grid {
        flex-direction: column;
        align-items: center;
    }

    .jackpot-card {
        max-width: 100%;
        width: 100%;
    }

    .bonuses-grid {
        flex-direction: column;
        align-items: center;
    }

    .bonus-card {
        max-width: 100%;
        width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .footer-grid {
        gap: 24px;
    }
}

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

    .burger {
        display: flex;
    }

    .online-badge {
        display: none;
    }

    .lang-dropdown {
        display: none;
    }

    .hero {
        min-height: 440px;
    }

    .hero-inner {
        padding: 40px 16px;
    }

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

    .hero-stats {
        gap: 16px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .author-block {
        flex-direction: column;
        gap: 14px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 24px;
    }

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

    .sticky-widget {
        padding: 10px 40px 10px 16px;
    }

    .widget-text {
        font-size: 13px;
    }

    .game-info-strip {
        flex-wrap: wrap;
    }

    .game-info-item {
        min-width: 50%;
    }

    .demo-cta-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .bonus-card {
        min-width: 290px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .video-tabs {
        gap: 6px;
    }

    .video-tab {
        padding: 6px 12px;
        font-size: 12px;
    }

    .table-scroll {
        overflow-x: auto;
    }

    .faq-question-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 10px 14px;
    }

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

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

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

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

    .jackpot-amount {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .author-block {
        padding: 20px;
    }
}

/* ==============================
   WP COMPAT STUBS
============================== */
.wp-block-image {
    margin: 0;
}

.wp-caption {
    margin: 0;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.entry-content {
    display: block;
}

.site-content {
    display: block;
}

.elementor-section {
    display: block;
}

.e-global__color {
    display: block;
}

#wpadminbar {
    display: none !important;
}

.wp-pagenavi {
    display: none;
}

.yoast-breadcrumb {
    display: none;
}

.post-type-page .entry-header {
    display: none;
}

.ast-breadcrumbs-wrapper {
    display: none;
}

/* ==============================
   SCROLL REVEAL HELPER
============================== */
[data-xzr], [data-p7kl] {
    will-change: transform, opacity;
}

/* ==============================
   TRANSITIONS BETWEEN BLOCKS
============================== */
.block-divider {
    height: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.block-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* ==============================
   TECHNICAL PAGE LAYOUT
============================== */
.page-hero {
    background: linear-gradient(135deg, var(--clr-header) 0%, rgba(15, 61, 46, 0.6) 100%);
    padding: 48px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 216, 77, 0.1);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.technical-wrap {
    padding: 40px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.poudb {
    max-width: 1040px;
    margin: 48px auto;
    padding: 42px 36px;
    background: linear-gradient(180deg, rgba(22, 33, 62, .96), rgba(15, 52, 96, .92));
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.poudb h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    word-break: break-word;
}

.poudb h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--clr-btn-gold);
    margin: 38px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 216, 77, .18);
    word-break: break-word;
}

.poudb p {
    font-size: 15px;
    line-height: 1.82;
    color: var(--clr-text-dark);
    margin-bottom: 16px;
    word-break: break-word;
}

.poudb ul,
.poudb ol {
    margin: 18px 0;
    padding-left: 22px;
}

.poudb ul {
    list-style: disc;
}

.poudb ol {
    list-style: decimal;
}

.poudb li {
    font-size: 14px;
    line-height: 1.72;
    color: var(--clr-text);
    margin-bottom: 9px;
    word-break: break-word;
}

.poudb strong,
.poudb b {
    color: #fff;
    font-weight: 700;
}

.poudb a {
    color: var(--clr-btn-gold);
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color .25s ease;
}

.poudb a:hover {
    color: #fff;
}

.poudb table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius-md);
}

.poudb table::-webkit-scrollbar {
    height: 6px;
}

.poudb table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .18);
    border-radius: 20px;
}

.poudb th,
.poudb td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
    white-space: nowrap;
}

.poudb th {
    background: rgba(255, 216, 77, .12);
    color: var(--clr-btn-gold);
}

.poudb td {
    background: rgba(255, 255, 255, .03);
    color: var(--clr-text);
}

.poudb img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    object-fit: cover;
}

@media (max-width: 768px) {
    .poudb {
        margin: 24px 10px;
        padding: 24px 16px;
        border-radius: 24px;
    }

    .poudb h1 {
        font-size: 26px;
        line-height: 1.22;
    }

    .poudb h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .poudb p,
    .poudb li {
        font-size: 14px;
        line-height: 1.72;
    }

    .poudb ul,
    .poudb ol {
        padding-left: 18px;
    }

    .poudb a {
        display: inline-block;
        max-width: 100%;
        font-size: 13px;
        word-break: break-all;
    }

    .poudb table {
        font-size: 13px;
    }

    .poudb th,
    .poudb td {
        padding: 10px 12px;
    }
}

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

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

    .poudb h2 {
        font-size: 18px;
    }

    .poudb p,
    .poudb li {
        font-size: 13.5px;
    }

    .poudb a {
        font-size: 12px;
    }
}