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

:root {
    --clr-bg: #010101;
    --clr-header: #000000;
    --clr-footer: #000000;
    --clr-btn-login: #000000;
    --clr-btn-reg: #FFD100;
    --clr-text: #FFFFFF;
    --clr-text-muted: #AAAAAA;
    --clr-accent: #FFD100;
    --clr-card: #0d0d0d;
    --clr-card2: #111111;
    --clr-border: #222222;
    --clr-green: #27ae60;
    --radius: 12px;
    --radius-sm: 8px;
    --font-main: 'Arial', sans-serif;
    --transition: .25s ease
}

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

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

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

a:hover {
    opacity: .8
}

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

ul {
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows:auto 1fr auto
}

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

.bb-xr4 {
    display: none
}

.bb-placeholder-node {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

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

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

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

.header-nav a {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap
}

.header-nav a:hover {
    background: #1a1a1a;
    color: var(--clr-accent)
}

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

.online-count {
    font-size: 12px;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse 2s infinite
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.btn--login {
    background: var(--clr-btn-login);
    color: var(--clr-text);
    border: 1px solid #333
}

.btn--login:hover {
    background: #1a1a1a;
    border-color: #555
}

.btn--reg {
    background: var(--clr-btn-reg);
    color: #000
}

.btn--reg:hover {
    background: #e6bc00;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 209, 0, .3)
}

.btn--bonus {
    background: linear-gradient(135deg, #FFD100, #FF8C00);
    color: #000;
    font-weight: 800
}

.btn--bonus:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 209, 0, .4)
}

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

.btn--outline:hover {
    background: var(--clr-accent);
    color: #000
}

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

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    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-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
    min-height: 460px;
    background: #0a0a0a
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.45)
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 700px
}

.hero-content h1, .hero-content .hero-h2 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .8);
    margin-bottom: 16px;
    line-height: 1.2
}

.hero-content p {
    font-size: clamp(15px, 2vw, 20px);
    color: #ddd;
    margin-bottom: 28px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .8)
}

.hero-badge {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background var(--transition)
}

.hero-dot.active {
    background: var(--clr-accent)
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background var(--transition)
}

.hero-arrow:hover {
    background: rgba(255, 209, 0, .2)
}

.hero-arrow--prev {
    left: 16px
}

.hero-arrow--next {
    right: 16px
}

.section {
    padding: 60px 0
}

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

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff
}

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

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

.breadcrumbs {
    padding: 16px 0;
    border-bottom: 1px solid var(--clr-border)
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text-muted)
}

.breadcrumbs li + li::before {
    content: '/';
    color: #444
}

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

.breadcrumbs a:hover {
    color: var(--clr-accent)
}

.breadcrumbs li:last-child {
    color: #fff
}

.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.card2 {
    background: var(--clr-card2);
    border: 1px solid #1a1a1a;
    border-radius: var(--radius);
    padding: 20px
}

.casino-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border)
}

.casino-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse
}

.casino-table th {
    background: #0a0a0a;
    color: var(--clr-accent);
    text-align: left;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    border-bottom: 2px solid var(--clr-accent)
}

.casino-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 15px;
    text-align: left;
    vertical-align: top
}

.casino-table tr:last-child td {
    border-bottom: none
}

.casino-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

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

.casino-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 40%;
    white-space: nowrap
}

.casino-table td:last-child {
    color: #fff
}

.jackpot-block {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1100 100%);
    border: 1px solid #2a1f00;
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.jackpot-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 209, 0, .08) 0%, transparent 70%)
}

.jackpot-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 900;
    color: var(--clr-accent);
    text-shadow: 0 0 40px rgba(255, 209, 0, .4);
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums
}

.jackpot-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-accent);
    margin-left: 6px;
    vertical-align: super
}

.jackpot-sub {
    color: var(--clr-text-muted);
    font-size: 14px;
    margin-top: 10px
}

.jackpot-btn {
    margin-top: 24px
}

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

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

.cards-grid--4 {
    grid-template-columns:repeat(4, 1fr)
}

.tournament-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.tournament-card-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff
}

.tournament-card-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6
}

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

.timer-badge {
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: #fff
}

.tournament-prize {
    font-size: 22px;
    font-weight: 900;
    color: var(--clr-accent)
}

.tournament-prize-label {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.bonus-card-header {
    background: linear-gradient(135deg, #1a1100, #0a0800);
    padding: 20px;
    border-bottom: 1px solid var(--clr-border)
}

.bonus-card-icon {
    font-size: 36px;
    margin-bottom: 8px
}

.bonus-card-name {
    font-size: 17px;
    font-weight: 800;
    color: #fff
}

.bonus-card-body {
    padding: 20px
}

.bonus-card-amount {
    font-size: 26px;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 8px
}

.bonus-card-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.bonus-card-terms {
    font-size: 12px;
    color: #555;
    margin-top: 10px
}

.wheel-section {
    background: linear-gradient(135deg, #0a0a0a, #0f0800);
    border: 1px solid #1a1100;
    border-radius: var(--radius);
    padding: 48px;
    text-align: center
}

.wheel-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 32px auto
}

#fortuneWheel {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid var(--clr-accent);
    box-shadow: 0 0 40px rgba(255, 209, 0, .2);
    transform-origin: center;
    transition: transform 4s cubic-bezier(.17, .67, .12, 1)
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .8))
}

.wheel-result {
    margin-top: 24px;
    padding: 20px;
    background: #0d0d0d;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    display: none
}

.wheel-result.show {
    display: block;
    animation: fadeIn .4s ease
}

.wheel-result--win {
    border-color: var(--clr-accent)
}

.wheel-result--lose {
    border-color: #c0392b
}

.wheel-result-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px
}

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

.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px
}

.content-block h2 {
    font-size: 22px;
    color: #fff;
    margin: 28px 0 12px;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 10px
}

.content-block h2:first-child {
    margin-top: 0
}

.content-block h3 {
    font-size: 18px;
    color: #eee;
    margin: 22px 0 8px
}

.content-block p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    margin: 12px 0 16px 20px;
    color: #ccc;
    line-height: 1.8
}

.content-block ul {
    list-style: disc
}

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

.content-block li {
    margin-bottom: 6px
}

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

.content-block table th {
    background: #111;
    color: var(--clr-accent);
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--clr-border)
}

.content-block table td {
    padding: 11px 16px;
    border: 1px solid var(--clr-border);
    color: #ccc
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.content-block a {
    color: var(--clr-accent)
}

.content-block strong {
    color: #fff
}

.content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 20px;
    background: rgba(255, 209, 0, .04);
    margin: 16px 0;
    color: #ccc;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0
}

.author-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    display: grid;
    grid-template-columns:80px 1fr;
    gap: 20px;
    align-items: start
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--clr-accent);
    object-fit: cover
}

.author-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.author-role {
    font-size: 13px;
    color: var(--clr-accent);
    margin-bottom: 10px;
    font-weight: 600
}

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

.author-links {
    display: flex;
    gap: 10px
}

.author-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    padding: 6px 12px;
    background: #111;
    border-radius: 6px;
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.author-links a:hover {
    color: var(--clr-accent);
    border-color: var(--clr-accent)
}

.site-footer {
    background: var(--clr-footer);
    border-top: 1px solid #1a1a1a;
    padding: 48px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px
}

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

.footer-legal-text {
    font-size: 12px;
    color: #444;
    line-height: 1.7;
    max-width: 260px
}

.footer-col-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 14px;
    font-weight: 700
}

.footer-links {
    display: grid;
    gap: 8px
}

.footer-links a {
    font-size: 14px;
    color: #666;
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--clr-accent)
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    margin-bottom: 20px
}

.footer-payments-title {
    font-size: 12px;
    color: #555;
    margin-right: 4px;
    white-space: nowrap
}

.payment-badge {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #888
}

.footer-providers {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #111
}

.provider-badge {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: #666
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px
}

.footer-copy {
    font-size: 13px;
    color: #333
}

.footer-legal-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.footer-legal-links a {
    font-size: 12px;
    color: #333
}

.footer-legal-links a:hover {
    color: #666
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a0a0a, #111);
    border-top: 2px solid var(--clr-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform .5s ease
}

.sticky-widget.show {
    transform: translateY(0)
}

.sticky-widget-text {
    font-size: 14px;
    color: #ddd;
    font-weight: 600
}

.sticky-widget-text strong {
    color: var(--clr-accent)
}

.sticky-widget-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0
}

.sticky-widget-close:hover {
    color: #999
}

.faq-block {
    display: grid;
    gap: 12px
}

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

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

.faq-question:hover {
    color: var(--clr-accent)
}

.faq-icon {
    font-size: 20px;
    transition: transform var(--transition);
    color: var(--clr-accent);
    flex-shrink: 0
}

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

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

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

.faq-answer-inner {
    padding: 0 20px 20px;
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.8
}

.download-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #111;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 16px 24px;
    transition: all var(--transition);
    min-width: 180px
}

.download-btn:hover {
    border-color: var(--clr-accent);
    background: #1a1100;
    transform: translateY(-2px)
}

.download-btn-icon {
    font-size: 32px
}

.download-btn-label {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.download-btn-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.tech-specs {
    display: grid;
    gap: 10px
}

.spec-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm)
}

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

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

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

.alt-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition)
}

.alt-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-2px)
}

.alt-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.alt-card-desc {
    font-size: 13px;
    color: var(--clr-text-muted)
}

.toc-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-accent);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px
}

.toc-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px
}

.toc-list {
    display: grid;
    gap: 8px
}

.toc-list a {
    font-size: 14px;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition)
}

.toc-list a::before {
    content: '→';
    color: var(--clr-accent);
    font-size: 12px
}

.toc-list a:hover {
    color: var(--clr-accent)
}

.promo-accent {
    background: linear-gradient(135deg, #1a1100, #0f0800);
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center
}

.promo-accent-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #0a0a0a;
    border: 2px dashed var(--clr-accent);
    border-radius: var(--radius);
    padding: 16px 28px;
    margin: 16px 0;
    cursor: pointer
}

.promo-code {
    font-size: 28px;
    font-weight: 900;
    color: var(--clr-accent);
    letter-spacing: 2px;
    font-family: monospace
}

.promo-copy-hint {
    font-size: 12px;
    color: #555;
    margin-top: 8px
}

.promo-copied {
    display: none;
    font-size: 13px;
    color: var(--clr-green);
    font-weight: 600;
    margin-top: 8px
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border)
}

.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse
}

.compare-table th {
    background: #0a0a0a;
    color: var(--clr-accent);
    text-align: left;
    padding: 14px 18px;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--clr-accent)
}

.compare-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
    color: #ccc;
    text-align: left
}

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

.compare-table td:first-child {
    font-weight: 600;
    color: #fff
}

.compare-table .yes {
    color: var(--clr-green)
}

.compare-table .no {
    color: #c0392b
}

.compare-table .hl {
    color: var(--clr-accent);
    font-weight: 700
}

.mirror-link-block {
    background: linear-gradient(135deg, #0a0f0a, #0a0a0a);
    border: 2px solid var(--clr-green);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center
}

.mirror-url {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-green);
    font-family: monospace;
    margin: 12px 0
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-green)
}

.mirror-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 2s infinite
}

.mirror-access-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px
}

.mirror-access-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer
}

.mirror-access-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-3px)
}

.mirror-access-icon {
    font-size: 28px;
    margin-bottom: 8px
}

.mirror-access-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.mirror-access-desc {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 4px
}

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

.slot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition)
}

.slot-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.slot-card-img {
    height: 160px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-bottom: 1px solid var(--clr-border)
}

.slot-card-body {
    padding: 16px
}

.slot-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.slot-card-provider {
    font-size: 12px;
    color: var(--clr-text-muted)
}

.slot-card-btn {
    margin-top: 12px;
    width: 100%
}

.demo-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden
}

.demo-block iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block
}

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

.feature-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition)
}

.feature-card:hover {
    border-color: var(--clr-accent);
    background: #0d0d0d
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.feature-desc {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 4px
}

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

.advantage-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center
}

.advantage-card:hover {
    border-color: var(--clr-accent)
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 12px
}

.advantage-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.advantage-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.reg-bonus-block {
    background: linear-gradient(135deg, #1a1100, #0a0800);
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center
}

.reg-bonus-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--clr-accent);
    text-shadow: 0 0 40px rgba(255, 209, 0, .3)
}

.reg-bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 16px
}

.reg-bonus-terms {
    font-size: 12px;
    color: #555;
    margin-top: 10px
}

.mobile-slider-wrap {
    overflow: hidden;
    position: relative
}

.mobile-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .35s ease
}

.mobile-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.mobile-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: background var(--transition)
}

.mobile-slider-dot.active {
    background: var(--clr-accent)
}

.bb-hidden-yoast {
    display: none;
    pointer-events: none;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    z-index: -9999
}

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

.tech-page-content h1 {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border);
    color: #fff
}

.tech-page-content h2 {
    font-size: 20px;
    color: #fff;
    margin: 28px 0 12px
}

.tech-page-content h3 {
    font-size: 16px;
    color: #eee;
    margin: 20px 0 8px
}

.tech-page-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 14px
}

.tech-page-content ul {
    margin: 12px 0 16px 20px;
    list-style: disc;
    color: #ccc;
    line-height: 1.8
}

.tech-page-content li {
    margin-bottom: 6px
}

.bb-v2x {
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    position: fixed;
    pointer-events: none
}

.elementor-widget-wrap {
    display: none
}

@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns:140px 1fr auto;
        gap: 16px
    }

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

    .cards-grid--4 {
        grid-template-columns:repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }

    .features-grid {
        grid-template-columns:repeat(3, 1fr)
    }

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

    .mirror-access-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

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

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

    .header-nav {
        display: none;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: #000;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid #1a1a1a;
        z-index: 998;
        max-height: calc(100vh - 73px);
        overflow-y: auto
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 16px
    }

    .burger {
        display: flex
    }

    .header-actions {
        gap: 6px
    }

    .header-actions .online-count {
        display: none
    }

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

    .hero-slider {
        min-height: 360px
    }

    .hero-content h1, .hero-content .hero-h2 {
        font-size: clamp(22px, 6vw, 36px)
    }

    .section {
        padding: 40px 0
    }

    .cards-grid {
        grid-template-columns:1fr
    }

    .cards-grid--2 {
        grid-template-columns:1fr
    }

    .cards-grid--4 {
        grid-template-columns:repeat(2, 1fr)
    }

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

    .author-block {
        grid-template-columns:64px 1fr;
        gap: 14px
    }

    .author-photo {
        width: 64px;
        height: 64px
    }

    .download-btns {
        flex-direction: column;
        align-items: center
    }

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

    .advantages-grid {
        grid-template-columns:1fr
    }

    .mirror-access-grid {
        grid-template-columns:1fr;
        gap: 12px
    }

    .slots-grid {
        grid-template-columns:1fr
    }

    .alternatives-grid {
        grid-template-columns:1fr
    }

    .mobile-slider-nav {
        display: flex
    }

    .sticky-widget {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 16px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .spec-row {
        grid-template-columns:1fr
    }

    .wheel-wrap {
        width: 240px;
        height: 240px
    }

    #fortuneWheel {
        width: 240px;
        height: 240px
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px
    }

    .casino-table td, .casino-table th {
        padding: 10px 12px
    }

    .jackpot-amount {
        font-size: clamp(36px, 10vw, 60px)
    }

    .cards-grid--4 {
        grid-template-columns:1fr
    }

    .features-grid {
        grid-template-columns:1fr
    }

    .demo-block iframe {
        height: 320px
    }

    .tech-page-content {
        padding: 20px
    }
}

.tournament-card,
.bonus-card {
    background: linear-gradient(180deg, #111 0%, #080808 100%);
    border: 1px solid rgba(255, 209, 0, .28);
    border-radius: 18px;
    padding: 24px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.tournament-card:hover,
.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-accent);
    box-shadow: 0 18px 46px rgba(255, 209, 0, .12);
}

.tournament-card-name,
.bonus-card-name {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    color: #fff;
}

.tournament-card-desc,
.bonus-card-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #cfcfcf;
}

.tournament-card-timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 12px;
    padding: 12px 14px;
}

.timer-badge {
    background: var(--clr-accent);
    color: #000;
    border: 0;
    font-weight: 900;
}

.tournament-prize-label {
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
}

.tournament-prize {
    font-size: 30px;
    color: var(--clr-accent);
    font-weight: 900;
}

.bonus-card {
    padding: 0;
}

.bonus-card-header {
    background: linear-gradient(135deg, #211600 0%, #0f0f0f 100%);
    border-bottom: 1px solid rgba(255, 209, 0, .22);
    padding: 26px 24px;
}

.bonus-card-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.bonus-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bonus-card-amount {
    font-size: 36px;
    line-height: 1.1;
    color: var(--clr-accent);
    font-weight: 900;
    margin-bottom: 14px;
}

.bonus-card-desc {
    flex: 1;
    margin-bottom: 18px;
}

.bonus-card-terms {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #222;
    font-size: 13px;
    color: #777;
}

.tournament-card .btn,
.bonus-card .btn {
    width: 100%;
    min-height: 44px;
}

@media (max-width: 768px) {
    .cards-grid.mobile-slider-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .cards-grid.mobile-slider-wrap > .mobile-slider-track {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        transform: none !important;
    }

    .tournament-card,
    .bonus-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .tournament-card-name,
    .bonus-card-name {
        font-size: 20px;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .tournament-card-desc,
    .bonus-card-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    .tournament-prize,
    .bonus-card-amount {
        font-size: 26px;
    }

    .mobile-slider-nav {
        display: none !important;
    }
}

.cards-grid.mobile-slider-wrap {
    display: block;
    width: 100%;
    overflow: visible;
}

.cards-grid.mobile-slider-wrap > .mobile-slider-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.tournament-card,
.bonus-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.tournament-card-name,
.bonus-card-name {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.tournament-card-desc,
.bonus-card-desc {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

@media (max-width: 768px) {
    .cards-grid.mobile-slider-wrap > .mobile-slider-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tournament-card,
    .bonus-card {
        width: 100%;
    }

    .tournament-card-name,
    .bonus-card-name {
        font-size: 20px;
        line-height: 1.25;
    }

    .tournament-card-desc,
    .bonus-card-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    .mobile-slider-nav {
        display: none;
    }
}

.jackpot-block > * {
    position: relative;
    z-index: 2;
}

.jackpot-block::before {
    pointer-events: none;
}

.jackpot-btn,
.jackpot-btn .btn {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .wrapper,
    main,
    .section,
    .section--sm,
    .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section {
        padding: 34px 0;
    }

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

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

    .section-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .section-sub {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 0;
    }

    .hero-slider {
        min-height: 300px;
        border-radius: 0 0 12px 12px;
    }

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

    .hero-content h1,
    .hero-content .hero-h2 {
        font-size: 26px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .hero-arrow {
        display: none;
    }

    .btn,
    .btn--lg,
    .btn--sm {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        min-height: 42px;
    }

    .cards-grid,
    .cards-grid--2,
    .cards-grid--4,
    .mobile-slider-wrap,
    .mobile-slider-track,
    .features-grid,
    .advantages-grid,
    .mirror-access-grid,
    .slots-grid,
    .alternatives-grid,
    .tech-specs,
    .faq-block,
    .download-btns {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: visible !important;
        transform: none !important;
    }

    .tournament-card,
    .bonus-card,
    .feature-card,
    .advantage-card,
    .mirror-access-card,
    .slot-card,
    .alt-card,
    .card,
    .card2,
    .download-btn,
    .faq-item,
    .spec-row {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .tournament-card,
    .bonus-card,
    .feature-card,
    .advantage-card,
    .mirror-access-card,
    .slot-card,
    .alt-card,
    .jackpot-block,
    .wheel-section,
    .content-block,
    .author-block,
    .promo-accent,
    .mirror-link-block,
    .toc-block,
    .tech-page-content {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .tournament-card-name,
    .bonus-card-name,
    .feature-title,
    .advantage-title,
    .slot-card-name,
    .alt-card-name {
        font-size: 20px;
        line-height: 1.25;
        overflow-wrap: break-word;
    }

    .tournament-card-desc,
    .bonus-card-desc,
    .feature-desc,
    .advantage-desc,
    .alt-card-desc,
    .content-block p,
    .tech-page-content p {
        font-size: 14px;
        line-height: 1.55;
    }

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

    .bonus-card-amount,
    .tournament-prize {
        font-size: 26px;
        line-height: 1.15;
    }

    .tournament-card-timer {
        flex-direction: column;
        align-items: flex-start;
    }

    .jackpot-block > * {
        position: relative;
        z-index: 2;
    }

    .jackpot-block::before {
        pointer-events: none;
    }

    .jackpot-amount {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: 0;
        word-break: break-word;
    }

    .jackpot-currency {
        font-size: 18px;
    }

    .wheel-section {
        overflow: hidden;
    }

    .wheel-wrap {
        width: 220px;
        height: 220px;
        margin: 24px auto;
    }

    #fortuneWheel {
        width: 220px;
        height: 220px;
    }

    .content-block,
    .tech-page-content {
        overflow: hidden;
    }

    .content-block h2,
    .tech-page-content h1,
    .tech-page-content h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .content-block h3,
    .tech-page-content h3 {
        font-size: 17px;
    }

    .content-block table,
    .casino-table,
    .compare-table {
        display: table;
        width: 620px;
        min-width: 620px;
        max-width: none;
    }

    .casino-table-wrap,
    .compare-table-wrap,
    .content-block table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .casino-table th,
    .casino-table td,
    .compare-table th,
    .compare-table td,
    .content-block table th,
    .content-block table td {
        padding: 9px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .author-block {
        display: grid;
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-grid,
    .footer-bottom,
    .footer-payments,
    .footer-providers,
    .footer-legal-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
    }

    .sticky-widget {
        padding: 9px 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .sticky-widget-text {
        font-size: 12px;
        line-height: 1.35;
    }

    .sticky-widget .btn {
        width: 100%;
    }

    .mobile-slider-nav {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-slider {
        min-height: 260px;
    }

    .hero-content h1,
    .hero-content .hero-h2 {
        font-size: 22px;
    }

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

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

    .wheel-wrap,
    #fortuneWheel {
        width: 200px;
        height: 200px;
    }
}