:root {
    --clr-bg: #16181B;
    --clr-header: #020A06;
    --clr-primary: #F5BF00;
    --clr-primary-hover: #e0ab00;
    --clr-secondary: #24262B;
    --clr-secondary-hover: #303338;
    --clr-text: #E8E9EA;
    --clr-text-muted: #9A9DA3;
    --clr-border: #2C2F35;
    --clr-card: #1E2024;
    --clr-card-2: #22252A;
    --clr-success: #2ECC71;
    --clr-warning: #F5BF00;
    --clr-error: #E74C3C;
    --clr-info: #3498DB;
    --clr-accent: #C9972B;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-glow: 0 0 24px rgba(245, 191, 0, .18);
    --font-base: 'Inter', sans-serif;
    --spacing: 8px;
}

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

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) * 2);
}

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

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

ul, ol {
    padding-left: 1.5rem;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .22s ease;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

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

.btn--primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
    color: #020A06;
}

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

.btn--secondary:hover {
    background: var(--clr-secondary-hover);
    transform: translateY(-1px);
    color: var(--clr-text);
}

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

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

/* === HEADER === */
.x7k2m-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    border-bottom: 1px solid rgba(245, 191, 0, .12);
    backdrop-filter: blur(12px);
}

.x7k2m-header .container {
    padding: 0 calc(var(--spacing) * 2);
}

.x7k2m-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: calc(var(--spacing) * 2);
    height: 68px;
}

.x7k2m-logo {
    display: flex;
    align-items: center;
}

.x7k2m-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

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

.x7k2m-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .875rem;
    font-weight: 500;
    transition: color .2s, background .2s;
}

.x7k2m-nav a svg {
    flex-shrink: 0;
}

.x7k2m-nav a:hover {
    color: var(--clr-primary);
    background: rgba(245, 191, 0, .08);
}

.x7k2m-header-right {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) * 1.5);
}

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

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

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, .5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
    }
}

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

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

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

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

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

.x7k2m-mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    z-index: 990;
    background: var(--clr-header);
    padding: calc(var(--spacing) * 3);
    overflow-y: auto;
    flex-direction: column;
    gap: calc(var(--spacing) * 2);
    border-top: 1px solid rgba(245, 191, 0, .1);
}

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

.x7k2m-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--clr-text);
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: background .2s, color .2s;
}

.x7k2m-mobile-menu a:hover {
    background: rgba(245, 191, 0, .08);
    color: var(--clr-primary);
}

.x7k2m-mobile-btns {
    display: flex;
    gap: calc(var(--spacing) * 1.5);
    margin-top: auto;
    flex-wrap: wrap;
}

.x7k2m-mobile-btns .btn {
    flex: 1;
    min-width: 120px;
}

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

.a9r3p-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020A06 0%, #0d1a10 40%, #16181B 100%);
}

.a9r3p-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .22;
}

.a9r3p-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 10, 6, .92) 0%, rgba(2, 10, 6, .5) 60%, transparent 100%);
}

.a9r3p-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: calc(var(--spacing) * 6);
    align-items: center;
}

.a9r3p-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: calc(var(--spacing) * 2);
}

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

.a9r3p-hero-sub {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--spacing) * 4);
    max-width: 520px;
}

.a9r3p-hero-btns {
    display: flex;
    gap: calc(var(--spacing) * 2);
    flex-wrap: wrap;
}

.a9r3p-hero-card {
    background: rgba(30, 32, 36, .92);
    border: 1px solid rgba(245, 191, 0, .25);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing) * 4);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.a9r3p-hero-card-badge {
    display: inline-block;
    background: var(--clr-primary);
    color: #020A06;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: calc(var(--spacing) * 2);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.a9r3p-hero-card-title {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--spacing));
}

.a9r3p-hero-card-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.a9r3p-hero-card-spins {
    font-size: 1rem;
    color: var(--clr-text);
    margin-bottom: calc(var(--spacing) * 3);
}

.a9r3p-hero-card .btn {
    width: 100%;
    margin-bottom: calc(var(--spacing));
}

.a9r3p-hero-card-disclaimer {
    font-size: .7rem;
    color: var(--clr-text-muted);
}

/* === SECTION HEADINGS === */
.s-section {
    padding: calc(var(--spacing) * 8) 0;
}

.s-section-head {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 6);
}

.s-section-head h2 {
    font-size: 2rem;
    margin-bottom: calc(var(--spacing) * 1.5);
}

.s-section-head p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.s-label {
    display: inline-block;
    background: rgba(245, 191, 0, .12);
    color: var(--clr-primary);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: calc(var(--spacing) * 1.5);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* === ADVANTAGES === */
.f3t8q-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 3);
}

.f3t8q-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--spacing) * 4);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.f3t8q-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 191, 0, .3);
    box-shadow: var(--shadow-card);
}

.f3t8q-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(245, 191, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing) * 2.5);
    color: var(--clr-primary);
}

.f3t8q-card h3 {
    font-size: 1rem;
    margin-bottom: calc(var(--spacing));
}

.f3t8q-card p {
    font-size: .875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* === JACKPOTS === */
.j9x1n-section {
    background: linear-gradient(135deg, #0b1410 0%, #16181B 100%);
}

.j9x1n-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 3);
}

.j9x1n-card {
    background: var(--clr-card-2);
    border: 1px solid rgba(245, 191, 0, .2);
    border-radius: var(--radius-lg);
    padding: calc(var(--spacing) * 4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.j9x1n-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 191, 0, .06) 0%, transparent 60%);
    pointer-events: none;
}

.j9x1n-card-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: calc(var(--spacing));
}

.j9x1n-card-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: calc(var(--spacing));
}

.j9x1n-card-game {
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--spacing) * 2.5);
}

.j9x1n-card .btn {
    width: 100%;
}

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

.p4w7k-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: .875rem;
    background: var(--clr-card);
}

.p4w7k-table thead tr {
    background: rgba(245, 191, 0, .08);
}

.p4w7k-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--clr-primary);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--clr-border);
}

.p4w7k-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(44, 47, 53, .7);
    color: var(--clr-text);
    vertical-align: middle;
}

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

.p4w7k-table tr:hover td {
    background: rgba(245, 191, 0, .04);
}

.p4w7k-method-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.p4w7k-method-logo svg {
    flex-shrink: 0;
}

.p4w7k-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
}

.p4w7k-badge--fast {
    background: rgba(46, 204, 113, .15);
    color: #2ECC71;
}

.p4w7k-badge--medium {
    background: rgba(245, 191, 0, .15);
    color: var(--clr-primary);
}

/* === TOURNAMENTS === */
.t6m2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 3);
}

.t6m2b-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--spacing) * 4);
    transition: transform .25s, box-shadow .25s;
}

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

.t6m2b-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: calc(var(--spacing) * 2);
}

.t6m2b-card-badge {
    display: inline-block;
    background: rgba(245, 191, 0, .12);
    color: var(--clr-primary);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.t6m2b-card h3 {
    font-size: 1.05rem;
    margin-bottom: calc(var(--spacing));
}

.t6m2b-card p {
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--spacing) * 2.5);
    line-height: 1.55;
}

.t6m2b-prize-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
}

.t6m2b-prize-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: calc(var(--spacing) * 2.5);
}

.t6m2b-timer {
    display: flex;
    gap: calc(var(--spacing) * 1.5);
    margin-bottom: calc(var(--spacing) * 3);
}

.t6m2b-timer-unit {
    text-align: center;
}

.t6m2b-timer-num {
    display: block;
    background: var(--clr-secondary);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    font-weight: 700;
    width: 48px;
    line-height: 48px;
    text-align: center;
    color: var(--clr-primary);
    margin-bottom: 4px;
}

.t6m2b-timer-label {
    font-size: .65rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.t6m2b-card .btn {
    width: 100%;
}

/* === BONUSES === */
.b8q5r-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 3);
}

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

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

.b8q5r-card-top {
    background: linear-gradient(135deg, #0d1a10, #1a2018);
    padding: calc(var(--spacing) * 4) calc(var(--spacing) * 4) calc(var(--spacing) * 3);
    border-bottom: 1px solid rgba(245, 191, 0, .12);
    text-align: center;
}

.b8q5r-card-icon {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing) * 1.5);
}

.b8q5r-card-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.b8q5r-card-subtitle {
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.b8q5r-card-body {
    padding: calc(var(--spacing) * 3) calc(var(--spacing) * 4);
}

.b8q5r-card h3 {
    font-size: 1rem;
    margin-bottom: calc(var(--spacing));
}

.b8q5r-card p {
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--spacing) * 3);
    line-height: 1.55;
}

.b8q5r-card .btn {
    width: 100%;
}

/* === SLOT GAME === */
.g5h9j-section {
    background: linear-gradient(135deg, #0b1410 0%, #16181B 100%);
}

.g5h9j-wrap {
    max-width: 500px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 1px solid rgba(245, 191, 0, .2);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing) * 5);
    text-align: center;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.g5h9j-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--clr-primary);
}

.g5h9j-subtitle {
    color: var(--clr-text-muted);
    font-size: .875rem;
    margin-bottom: calc(var(--spacing) * 4);
}

.g5h9j-reels {
    display: flex;
    gap: calc(var(--spacing) * 2);
    justify-content: center;
    margin-bottom: calc(var(--spacing) * 4);
}

.g5h9j-reel {
    width: 90px;
    height: 90px;
    background: var(--clr-secondary);
    border-radius: var(--radius-md);
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    line-height: 1;
    transition: border-color .3s;
    overflow: hidden;
}

.g5h9j-reel.spinning {
    border-color: var(--clr-primary);
    animation: reel-spin .1s steps(1) infinite;
}

@keyframes reel-spin {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .6;
    }
    100% {
        opacity: 1;
    }
}

.g5h9j-result {
    min-height: 56px;
    margin-bottom: calc(var(--spacing) * 3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.g5h9j-result-win {
    color: var(--clr-success);
    font-weight: 700;
    font-size: 1.1rem;
}

.g5h9j-result-loss {
    color: var(--clr-text-muted);
    font-size: .95rem;
}

.g5h9j-btn-spin {
    width: 100%;
    max-width: 260px;
}

/* === REVIEW CONTENT === */
.r2v6c-section .container {
    max-width: 860px;
}

.r2v6c-author {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) * 2);
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--spacing) * 3);
    margin-bottom: calc(var(--spacing) * 4);
}

.r2v6c-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-secondary);
    flex-shrink: 0;
    overflow: hidden;
}

.r2v6c-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.r2v6c-author-name {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 2px;
}

.r2v6c-author-bio {
    font-size: .8rem;
    color: var(--clr-text-muted);
}

.r2v6c-author-links {
    display: flex;
    gap: calc(var(--spacing) * 1.5);
    margin-top: 6px;
    flex-wrap: wrap;
}

.r2v6c-author-links a {
    font-size: .78rem;
    color: var(--clr-primary);
}

.r2v6c-content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--spacing) * 5);
}

.r2v6c-content-block h1, .r2v6c-content-block h2, .r2v6c-content-block h3,
.r2v6c-content-block h4, .r2v6c-content-block h5, .r2v6c-content-block h6 {
    color: var(--clr-text);
    margin-bottom: calc(var(--spacing) * 1.5);
    margin-top: calc(var(--spacing) * 3);
}

.r2v6c-content-block h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: calc(var(--spacing));
}

.r2v6c-content-block h3 {
    font-size: 1.2rem;
}

.r2v6c-content-block p {
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--clr-text);
    line-height: 1.75;
}

.r2v6c-content-block ul, .r2v6c-content-block ol {
    margin-bottom: calc(var(--spacing) * 2);
    padding-left: calc(var(--spacing) * 3);
}

.r2v6c-content-block li {
    margin-bottom: calc(var(--spacing));
    color: var(--clr-text);
    line-height: 1.65;
}

.r2v6c-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: calc(var(--spacing) * 3);
    text-align: left;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.r2v6c-content-block th {
    background: rgba(245, 191, 0, .08);
    color: var(--clr-primary);
    padding: 10px 14px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--clr-border);
}

.r2v6c-content-block td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(44, 47, 53, .7);
    font-size: .875rem;
}

.r2v6c-content-block a {
    color: var(--clr-primary);
}

.r2v6c-content-block blockquote {
    border-left: 3px solid var(--clr-primary);
    padding-left: calc(var(--spacing) * 2);
    margin: calc(var(--spacing) * 3) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.r2v6c-content-block strong {
    color: var(--clr-text);
    font-weight: 600;
}

/* === FAQ === */
.q1e4s-section .container {
    max-width: 780px;
}

.q1e4s-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: calc(var(--spacing) * 1.5);
    overflow: hidden;
}

.q1e4s-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing) * 2.5) calc(var(--spacing) * 3);
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    gap: calc(var(--spacing) * 2);
    transition: color .2s;
}

.q1e4s-question:hover {
    color: var(--clr-primary);
}

.q1e4s-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .3s;
}

.q1e4s-item.is-open .q1e4s-icon {
    transform: rotate(45deg);
    background: rgba(245, 191, 0, .15);
}

.q1e4s-item.is-open .q1e4s-question {
    color: var(--clr-primary);
}

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

.q1e4s-answer-inner {
    padding: 0 calc(var(--spacing) * 3) calc(var(--spacing) * 3);
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-size: .9rem;
}

/* === FOOTER === */
.x8n3f-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(245, 191, 0, .1);
    margin-top: auto;
}

.x8n3f-footer-top {
    padding: calc(var(--spacing) * 6) 0;
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: calc(var(--spacing) * 4);
}

.x8n3f-footer-brand-logo img {
    height: 38px;
    margin-bottom: calc(var(--spacing) * 2);
}

.x8n3f-footer-brand-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: calc(var(--spacing) * 2);
}

.x8n3f-footer-brand-desc {
    font-size: .8rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.x8n3f-footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: calc(var(--spacing) * 2);
}

.x8n3f-footer-col ul {
    list-style: none;
    padding: 0;
}

.x8n3f-footer-col ul li {
    margin-bottom: calc(var(--spacing));
}

.x8n3f-footer-col ul li a {
    font-size: .875rem;
    color: var(--clr-text-muted);
    transition: color .2s;
}

.x8n3f-footer-col ul li a:hover {
    color: var(--clr-primary);
}

.x8n3f-footer-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 0;
}

.x8n3f-footer-mid {
    padding: calc(var(--spacing) * 4) 0;
}

.x8n3f-footer-logos-group {
    margin-bottom: calc(var(--spacing) * 3);
}

.x8n3f-footer-logos-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: calc(var(--spacing) * 1.5);
}

.x8n3f-footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing) * 1.5);
    align-items: center;
}

.x8n3f-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-secondary);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text);
}

.x8n3f-social-row {
    display: flex;
    gap: calc(var(--spacing) * 1.5);
    margin-top: calc(var(--spacing) * 2);
}

.x8n3f-social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: background .2s, color .2s;
}

.x8n3f-social-btn:hover {
    background: rgba(245, 191, 0, .12);
    color: var(--clr-primary);
}

.x8n3f-footer-bottom {
    padding: calc(var(--spacing) * 3) 0;
    border-top: 1px solid var(--clr-border);
}

.x8n3f-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--spacing) * 3);
    flex-wrap: wrap;
}

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

.x8n3f-legal {
    font-size: .72rem;
    color: var(--clr-text-muted);
    max-width: 640px;
    line-height: 1.6;
}

/* === STICKY WIDGET === */
.w2p7l-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 980;
    background: linear-gradient(90deg, #020A06 0%, #0d1a10 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 12px calc(var(--spacing) * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing) * 3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.w2p7l-widget-text {
    font-size: .9rem;
    color: var(--clr-text);
    font-weight: 600;
}

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

.w2p7l-code {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) * 1.5);
    background: var(--clr-secondary);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

.w2p7l-code-label {
    font-size: .72rem;
    color: var(--clr-text-muted);
}

.w2p7l-code-val {
    font-size: .9rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: .08em;
}

.w2p7l-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w2p7l-close:hover {
    color: var(--clr-text);
}

/* === SLIDER === */
.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .4s ease;
}

.slider-track > * {
    flex-shrink: 0;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing) * 1.5);
    margin-top: calc(var(--spacing) * 3);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none;
}

.slider-dot.is-active {
    background: var(--clr-primary);
    transform: scale(1.3);
}

/* === UNUSED UTILITY CLASSES (layout helpers) === */
.ux-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ux-clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.ux-visually-hidden {
    visibility: hidden;
}

.nv-gutter-v1 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.nv-gutter-v2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.qx-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qx-mt-auto {
    margin-top: auto;
}

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

.qx-gap-2 {
    gap: calc(var(--spacing) * 2);
}

.zp-bordered {
    border: 1px solid var(--clr-border);
}

.zp-rounded {
    border-radius: var(--radius-md);
}

.entry-content {
    display: block;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 2rem 0;
}

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

.wp-caption {
    display: block;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    animation: fadeInUp .5s ease both;
}

.anim-delay-1 {
    animation-delay: .1s;
}

.anim-delay-2 {
    animation-delay: .2s;
}

.anim-delay-3 {
    animation-delay: .3s;
}

.anim-delay-4 {
    animation-delay: .4s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .x7k2m-nav {
        display: none;
    }

    .x7k2m-burger {
        display: flex;
    }

    .a9r3p-hero-inner {
        grid-template-columns: 1fr;
    }

    .a9r3p-hero-card {
        max-width: 360px;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .a9r3p-hero {
        min-height: 480px;
    }

    .a9r3p-hero-title {
        font-size: 2rem;
    }

    .s-section {
        padding: calc(var(--spacing) * 5) 0;
    }

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

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

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

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

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

    .x8n3f-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .w2p7l-widget {
        flex-direction: column;
        gap: calc(var(--spacing) * 1.5);
        padding: 14px;
    }

    .w2p7l-close {
        top: 10px;
        right: 10px;
        transform: none;
    }

    .x7k2m-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .x7k2m-online {
        display: none;
    }

    .s-section-head h2 {
        font-size: 1.5rem;
    }

    .g5h9j-reel {
        width: 76px;
        height: 76px;
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .a9r3p-hero-btns {
        flex-direction: column;
    }

    .a9r3p-hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .x7k2m-online {
        display: none;
    }

    .x7k2m-header-inner {
        grid-template-columns: auto 1fr auto;
    }
}

@media (max-width: 768px) {
    .t6m2b-grid, .b8q5r-grid {
        display: flex;
        overflow-x: hidden;
        flex-wrap: nowrap;
    }

    .t6m2b-grid .t6m2b-card, .b8q5r-grid .b8q5r-card {
        min-width: calc(100vw - 64px);
    }
}

@media (max-width: 768px) {
    #tournaments .container,
    #bonuses .container {
        padding: 0 14px;
    }

    #tournaments .s-section-head,
    #bonuses .s-section-head {
        margin-bottom: 24px;
    }

    #tournaments .s-section-head h2,
    #bonuses .s-section-head h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    #tournaments .s-section-head p,
    #bonuses .s-section-head p {
        font-size: 14px;
    }

    #tournaments .slider-wrap,
    #bonuses .slider-wrap {
        overflow: hidden;
        max-width: 100%;
    }

    .t6m2b-grid,
    .b8q5r-grid {
        display: flex;
        grid-template-columns:none;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .t6m2b-grid::-webkit-scrollbar,
    .b8q5r-grid::-webkit-scrollbar {
        display: none;
    }

    .t6m2b-card,
    .b8q5r-card {
        flex: 0 0 88%;
        min-width: 88%;
        max-width: 88%;
        scroll-snap-align: center;
    }

    .t6m2b-card {
        padding: 22px 16px;
    }

    .t6m2b-timer {
        gap: 6px;
        justify-content: space-between;
    }

    .t6m2b-timer-unit {
        flex: 1;
        min-width: 0;
    }

    .t6m2b-timer-num {
        width: 100%;
        min-width: 0;
        line-height: 42px;
        font-size: 18px;
    }

    .t6m2b-card .btn,
    .b8q5r-card .btn {
        width: 100%;
    }

    .b8q5r-card-top,
    .b8q5r-card-body {
        padding: 22px 16px;
    }

    .b8q5r-card-amount {
        font-size: 24px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {
    .t6m2b-card,
    .b8q5r-card {
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .t6m2b-card h3,
    .b8q5r-card h3 {
        font-size: 18px;
    }

    .t6m2b-card p,
    .b8q5r-card p {
        font-size: 14px;
    }

    .t6m2b-prize-amount {
        font-size: 24px;
    }

    .b8q5r-card-amount {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .slider-track {
        transform: none !important;
    }

    .t6m2b-grid,
    .b8q5r-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .t6m2b-card,
    .b8q5r-card {
        flex: 0 0 90%;
        min-width: 90%;
        scroll-snap-align: center;
    }
}

.crown-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #020a06;
    border-bottom: 1px solid rgba(245, 191, 0, .16);
}

.crown-header * {
    box-sizing: border-box;
}

.crown-header__inner {
    width: 100%;
    max-width: 1200px;
    height: 68px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.crown-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.crown-header__logo img {
    width: auto;
    height: 42px;
    max-width: 160px;
    object-fit: contain;
}

.crown-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.crown-header__nav a,
.crown-menu a {
    color: #e8e9ea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 12px;
}

.crown-header__nav a:hover,
.crown-menu a:hover {
    color: #f5bf00;
    background: rgba(245, 191, 0, .08);
}

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

.crown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.crown-btn--gold {
    background: #f5bf00;
    color: #020a06;
}

.crown-btn--dark {
    background: #24262b;
    color: #e8e9ea;
}

.crown-burger {
    display: none;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(245, 191, 0, .2);
    border-radius: 12px;
    background: #111511;
    cursor: pointer;
}

.crown-burger span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #e8e9ea;
    transition: .22s ease;
}

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

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

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

.crown-menu {
    display: none;
}

@media (max-width: 1024px) {
    .crown-header__inner {
        height: 66px;
        gap: 10px;
    }

    .crown-header__nav {
        display: none;
    }

    .crown-header__actions {
        margin-left: auto;
    }

    .crown-header__actions .crown-btn {
        min-height: 32px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .crown-burger {
        display: flex;
    }

    .crown-menu {
        display: none;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99998;
        background: #020a06;
        padding: 16px;
        overflow-y: auto;
        border-top: 1px solid rgba(245, 191, 0, .16);
    }

    .crown-menu.is-open {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .crown-menu a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        border: 1px solid rgba(245, 191, 0, .14);
        background: rgba(255, 255, 255, .04);
    }

    .crown-menu__actions {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .crown-menu__actions .crown-btn {
        justify-content: center;
    }

    body.crown-menu-lock {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .crown-header__inner {
        padding: 0 10px;
    }

    .crown-header__logo img {
        max-width: 112px;
        height: auto;
    }

    .crown-header__actions {
        gap: 6px;
    }

    .crown-header__actions .crown-btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .crown-burger {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .crown-menu {
        padding: 12px;
    }
}

.crown-menu {
    display: none;
}

.crown-menu.is-open {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    flex-direction: column;
    gap: 8px;
    padding: 82px 14px 24px;
    background: #020a06;
    overflow-y: auto;
}

.crown-menu.is-open a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(245, 191, 0, .18);
    background: #111511;
    color: #e8e9ea;
}

.crown-menu__actions {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.crown-header {
    z-index: 2147483646 !important;
}

.crown-burger {
    position: relative;
    z-index: 2147483648 !important;
}

body.crown-menu-lock {
    overflow: hidden;
}