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

:root {
    --c-navy: #0a0a35;
    --c-navy-light: #0d0d45;
    --c-navy-mid: #12124e;
    --c-green: #016d19;
    --c-green-hover: #018a20;
    --c-yellow: #fbec1f;
    --c-yellow-hover: #ffe800;
    --c-bg: #000000;
    --c-bg-card: #0c0c2e;
    --c-bg-card2: #0f0f38;
    --c-text: #e8eaf0;
    --c-text-muted: #a0a4b8;
    --c-text-heading: #ffffff;
    --c-border: #1e1e5a;
    --c-accent: #fbec1f;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 24px rgba(251, 236, 31, 0.15);
    --transition: 0.25s ease;
    --font: 'Inter', sans-serif;
    --max-w: 1200px;
}

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

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

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

a {
    color: var(--c-yellow);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font);
}

input, select, textarea {
    font-family: var(--font);
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

.btn--yellow {
    background: var(--c-yellow);
    color: #000;
}

.btn--yellow:hover {
    background: var(--c-yellow-hover);
    color: #000;
    box-shadow: 0 4px 20px rgba(251, 236, 31, 0.4);
    transform: translateY(-1px);
}

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

.btn--green:hover {
    background: var(--c-green-hover);
    color: #fff;
    box-shadow: 0 4px 20px rgba(1, 109, 25, 0.4);
    transform: translateY(-1px);
}

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

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

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

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn--xl {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-md);
}

.header {
    background: var(--c-navy);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
    height: 68px;
    max-width: var(--max-w);
    margin: 0 auto;
}

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

.header__logo img {
    height: 40px;
    width: auto;
}

.header__logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-yellow);
    letter-spacing: -0.5px;
}

.header__logo-text span {
    color: #fff;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--c-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.header__nav-link:hover, .header__nav-link.active {
    background: rgba(255, 255, 255, 0.07);
    color: var(--c-yellow);
}

.header__nav-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

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

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

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

.header__online-count {
    color: #22c55e;
    font-weight: 700;
}

.lang-select {
    position: relative;
}

.lang-select__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: 13px;
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--transition);
}

.lang-select__btn:hover {
    border-color: var(--c-yellow);
    color: var(--c-yellow);
}

.lang-select__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-navy-mid);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition);
    z-index: 100;
}

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

.lang-select__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--c-text);
    cursor: pointer;
    transition: background var(--transition);
}

.lang-select__item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-yellow);
}

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

.burger__line {
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 53, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: var(--c-text);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--c-yellow);
    border-color: var(--c-yellow);
}

.mobile-menu__link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-menu__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mobile-menu__btns .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
}

.hero {
    min-height: 540px;
    position: relative;
    background: url('/images/banner-nyx.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 53, 0.92) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 20px;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.hero__content {
    flex: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 236, 31, 0.12);
    border: 1px solid rgba(251, 236, 31, 0.4);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--c-yellow);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    text-wrap: balance;
    margin-bottom: 16px;
}

.hero__title span {
    color: var(--c-yellow);
}

.hero__subtitle {
    font-size: 16px;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text-muted);
}

.hero__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--c-yellow);
    flex-shrink: 0;
}

.hero__bonus-tile {
    flex-shrink: 0;
    background: var(--c-navy);
    border: 2px solid var(--c-yellow);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    width: 280px;
    box-shadow: var(--shadow-glow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero__bonus-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.hero__bonus-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--c-yellow);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__bonus-sub {
    font-size: 14px;
    color: var(--c-text);
    margin-bottom: 6px;
}

.hero__bonus-spins {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.hero__bonus-note {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}

.hero__bonus-btn {
    width: 100%;
}

.hero__bonus-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--c-text-muted);
}

.hero__stars {
    color: var(--c-yellow);
    letter-spacing: 2px;
}

.section {
    padding: 64px 0;
}

.section--alt {
    background: rgba(255, 255, 255, 0.015);
}

.section__head {
    text-align: center;
    margin-bottom: 44px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-yellow);
    margin-bottom: 10px;
}

.section__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: var(--c-text-heading);
    line-height: 1.2;
    text-wrap: balance;
    margin-bottom: 12px;
}

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

.jackpot-block {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    border: 2px solid rgba(251, 236, 31, 0.3);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.jackpot-block::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 236, 31, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    color: var(--c-yellow);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 40px rgba(251, 236, 31, 0.4);
    font-variant-numeric: tabular-nums;
}

.jackpot-name {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.jackpot-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.jackpot-mini {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    min-width: 140px;
}

.jackpot-mini__name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.jackpot-mini__amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-yellow);
    font-variant-numeric: tabular-nums;
}

.cards-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-card);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    border-color: rgba(251, 236, 31, 0.3);
}

.card--tournament {
    padding: 0;
}

.card--tournament .card__header {
    background: linear-gradient(135deg, var(--c-navy-mid) 0%, var(--c-navy) 100%);
    padding: 20px;
    border-bottom: 1px solid var(--c-border);
}

.card--tournament .card__body {
    padding: 20px;
}

.card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(251, 236, 31, 0.12);
    border: 1px solid rgba(251, 236, 31, 0.3);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--c-yellow);
    font-weight: 600;
    margin-bottom: 10px;
}

.card__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

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

.card__prize {
    font-size: 26px;
    font-weight: 900;
    color: var(--c-yellow);
    margin-bottom: 4px;
}

.card__prize-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.card__timer {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.timer-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    min-width: 52px;
}

.timer-unit__val {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-unit__lbl {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 1px;
    margin-top: 2px;
}

.card--bonus {
    padding: 0;
}

.card--bonus .card__top {
    padding: 20px;
    text-align: center;
}

.card--bonus .card__icon {
    width: 56px;
    height: 56px;
    background: rgba(251, 236, 31, 0.1);
    border: 2px solid rgba(251, 236, 31, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.card--bonus .card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--c-yellow);
}

.card--bonus .card__amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--c-yellow);
}

.card--bonus .card__type {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

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

.card--bonus .card__footer {
    padding: 14px 20px;
    border-top: 1px solid var(--c-border);
    background: rgba(255, 255, 255, 0.02);
}

.card--bonus .card__terms {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

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

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

.slider-track .card {
    flex: 0 0 calc(100% - 32px);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

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

.slider-dot.active {
    background: var(--c-yellow);
    width: 20px;
    border-radius: 4px;
}

.slider-arrows {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-arrow:hover {
    background: var(--c-yellow);
    color: #000;
    border-color: var(--c-yellow);
}

.wheel-section {
}

.wheel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wheel-canvas-wrap {
    position: relative;
}

.wheel-canvas-wrap canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(251, 236, 31, 0.2);
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--c-yellow);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.wheel-info {
    max-width: 340px;
}

.wheel-info__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.wheel-info__title span {
    color: var(--c-yellow);
}

.wheel-info__text {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.wheel-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    display: none;
}

.wheel-result.win {
    border-color: rgba(251, 236, 31, 0.5);
    background: rgba(251, 236, 31, 0.06);
}

.wheel-result.lose {
    border-color: rgba(255, 100, 100, 0.3);
    background: rgba(255, 100, 100, 0.04);
}

.wheel-result__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.wheel-result__text {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.review-block {
    max-width: 860px;
    margin: 0 auto;
}

.review-block h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 32px 0 14px;
}

.review-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e0e0ff;
    margin: 24px 0 10px;
}

.review-block h4 {
    font-size: 17px;
    font-weight: 600;
    color: #d0d0f0;
    margin: 18px 0 8px;
}

.review-block p {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.review-block a {
    color: var(--c-yellow);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.review-block a:hover {
    color: var(--c-yellow-hover);
}

.review-block ul, .review-block ol {
    margin: 0 0 16px 20px;
}

.review-block ul {
    list-style: disc;
}

.review-block ol {
    list-style: decimal;
}

.review-block li {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

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

.review-block em, .review-block i {
    color: #c0c4d8;
}

.review-block blockquote {
    border-left: 3px solid var(--c-yellow);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(251, 236, 31, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.review-block table th {
    background: var(--c-navy-mid);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--c-border);
}

.review-block table td {
    padding: 10px 16px;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    text-align: left;
}

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

.review-block img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.review-block hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 28px 0;
}

.review-block code {
    background: rgba(255, 255, 255, 0.07);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

.review-block pre {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0;
}

.review-block pre code {
    background: none;
    padding: 0;
}

.security-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.security-table thead th {
    background: var(--c-navy-mid);
    color: var(--c-yellow);
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 1px solid var(--c-border);
}

.security-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(30, 30, 90, 0.5);
    color: var(--c-text);
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
}

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

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

.security-table tbody tr:hover td {
    background: rgba(251, 236, 31, 0.03);
}

.security-table__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-table__icon svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 20px;
    border-radius: var(--radius-lg);
}

.faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item:hover {
    border-color: rgba(251, 236, 31, 0.3);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    user-select: none;
}

.faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.faq__icon svg {
    width: 12px;
    height: 12px;
    color: var(--c-text-muted);
    transition: transform var(--transition);
}

.faq__item.open .faq__icon {
    background: var(--c-yellow);
    border-color: var(--c-yellow);
}

.faq__item.open .faq__icon svg {
    color: #000;
    transform: rotate(45deg);
}

.faq__a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.open .faq__a {
    max-height: 400px;
    padding-bottom: 18px;
}

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

.faq__a a {
    color: var(--c-yellow);
}

.author-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
}

.author-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--c-yellow);
}

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

.author-card__info {
    flex: 1;
}

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

.author-card__role {
    font-size: 13px;
    color: var(--c-yellow);
    font-weight: 600;
    margin-bottom: 12px;
}

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

.author-card__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.author-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-card__meta-item svg {
    width: 13px;
    height: 13px;
    color: var(--c-yellow);
}

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

.author-social__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--c-text);
    transition: all var(--transition);
}

.author-social__link:hover {
    background: rgba(251, 236, 31, 0.1);
    border-color: var(--c-yellow);
    color: var(--c-yellow);
}

.author-social__link svg {
    width: 15px;
    height: 15px;
}

.footer {
    background: var(--c-navy);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer__top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border);
}

.footer__brand {
    flex: 1;
    min-width: 200px;
}

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

.footer__logo img {
    height: 36px;
    width: auto;
}

.footer__logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--c-yellow);
}

.footer__logo-text span {
    color: #fff;
}

.footer__tagline {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 220px;
    margin-bottom: 16px;
}

.footer__flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
}

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

.footer__col {
    min-width: 140px;
}

.footer__col-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-yellow);
    font-weight: 700;
    margin-bottom: 14px;
}

.footer__col-link {
    display: block;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer__col-link:hover {
    color: var(--c-yellow);
}

.footer__logos-row {
    margin-bottom: 24px;
}

.footer__logos-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__logo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 12px;
    color: var(--c-text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.footer__logo-badge:hover {
    border-color: rgba(251, 236, 31, 0.3);
    color: var(--c-text);
}

.footer__logo-badge svg {
    width: 16px;
    height: 16px;
    color: var(--c-yellow);
}

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

.footer__social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.footer__social-link:hover {
    background: var(--c-yellow);
    border-color: var(--c-yellow);
    color: #000;
}

.footer__social-link svg {
    width: 15px;
    height: 15px;
}

.footer__bottom {
    text-align: center;
}

.footer__legal {
    font-size: 11px;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 16px;
}

.footer__legal a {
    color: var(--c-text-muted);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.footer__legal a:hover {
    color: var(--c-yellow);
}

.footer__copy {
    font-size: 12px;
    color: rgba(160, 164, 184, 0.5);
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    border-top: 2px solid var(--c-yellow);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    animation: slideUp 0.6s 1.5s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.sticky-widget__close {
    position: absolute;
    top: -12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--c-navy);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 14px;
    transition: all var(--transition);
}

.sticky-widget__close:hover {
    background: var(--c-yellow);
    color: #000;
    border-color: var(--c-yellow);
}

.sticky-widget__text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.sticky-widget__badge {
    background: var(--c-yellow);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.sticky-widget__msg {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.sticky-widget__msg span {
    color: var(--c-yellow);
}

.sticky-widget__btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.sticky-widget.hidden {
    display: none;
}

.info-page {
    padding: 60px 0;
}

.info-page .container {
    max-width: 860px;
}

.info-page h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.info-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: #e0e0ff;
    margin: 28px 0 12px;
}

.info-page p {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.info-page ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}

.info-page li {
    font-size: 15px;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.info-page a {
    color: var(--c-yellow);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.info-page strong {
    color: #fff;
}

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

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

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border) 30%, var(--c-border) 70%, transparent);
    margin: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(251, 236, 31, 0.3);
}

@media (max-width: 1024px) {
    .cards-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__bonus-tile {
        width: 240px;
    }
}

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

    .header__online {
        display: none;
    }

    .lang-select {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero__subtitle {
        margin: 0 auto 24px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

    .hero__bonus-tile {
        width: 100%;
        max-width: 320px;
        animation: none;
    }

    .cards-grid--3 {
        grid-template-columns: 1fr;
        display: block;
    }

    .cards-grid--3 .slider-wrap {
        display: block;
    }

    .jackpot-block {
        padding: 28px 20px;
        margin: 0 20px;
    }

    .jackpot-grid {
        gap: 12px;
    }

    .jackpot-mini {
        min-width: 110px;
        padding: 12px 16px;
    }

    .wheel-wrap {
        flex-direction: column;
        gap: 28px;
    }

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

    .wheel-canvas-wrap canvas {
        width: 280px;
        height: 280px;
    }

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

    .author-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer__top {
        flex-direction: column;
        gap: 28px;
    }

    .footer__links {
        gap: 20px;
    }

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

    .sticky-widget__msg {
        font-size: 12px;
    }

    .sticky-widget__btns .btn--outline {
        display: none;
    }

    .section {
        padding: 44px 0;
    }

    .table-scroll {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .author-card {
        padding: 20px;
    }

    .sticky-widget__badge {
        display: none;
    }
}

.d5f2a {
    display: none;
}

.wp-block-group {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.wp-post-image {
    display: block;
}

#wpadminbar {
    display: none !important;
}

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.widget_text {
    display: block;
}

.textwidget {
    display: block;
}

.site-footer__widgets {
    display: none;
}

.b7c3e9 {
    visibility: hidden;
    position: absolute;
}

.af12d {
    overflow: hidden;
    height: 0;
}

.nvbvc {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px 0;
    padding: 28px;
    overflow: hidden;
    color: var(--c-text, #e8eaf0);
    background: linear-gradient(
            145deg,
            rgba(15, 15, 56, 0.98) 0%,
            rgba(8, 8, 35, 0.98) 100%
    );
    border: 1px solid rgba(251, 236, 31, 0.24);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nvbvc *,
.nvbvc *::before,
.nvbvc *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.nvbvc h1,
.nvbvc h2,
.nvbvc h3,
.nvbvc h4,
.nvbvc h5,
.nvbvc h6 {
    max-width: 100%;
    color: #ffffff;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.nvbvc h1 {
    margin: 0 0 20px;
    font-size: 2rem;
}

.nvbvc h2 {
    margin: 28px 0 12px;
    font-size: 1.5rem;
    color: var(--c-yellow, #fbec1f);
}

.nvbvc h3 {
    margin: 22px 0 10px;
    font-size: 1.2rem;
}

.nvbvc h4 {
    margin: 18px 0 8px;
    font-size: 1rem;
}

.nvbvc p {
    max-width: 100%;
    margin: 0 0 15px;
    color: var(--c-text, #e8eaf0);
    font-size: 0.95rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: normal;
}

.nvbvc a {
    display: inline;
    max-width: 100%;
    color: var(--c-yellow, #fbec1f);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.nvbvc a:hover {
    color: #ffffff;
}

.nvbvc strong,
.nvbvc b {
    color: #ffffff;
}

.nvbvc ul,
.nvbvc ol {
    max-width: 100%;
    margin: 14px 0 18px;
    padding-left: 22px;
}

.nvbvc ul {
    list-style: disc;
}

.nvbvc ol {
    list-style: decimal;
}

.nvbvc li {
    max-width: 100%;
    margin-bottom: 7px;
    color: var(--c-text, #e8eaf0);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.nvbvc blockquote {
    max-width: 100%;
    margin: 20px 0;
    padding: 14px 18px;
    color: var(--c-text-muted, #a0a4b8);
    background: rgba(251, 236, 31, 0.05);
    border-left: 3px solid var(--c-yellow, #fbec1f);
    border-radius: 0 10px 10px 0;
    overflow-wrap: anywhere;
}

.nvbvc img,
.nvbvc picture,
.nvbvc video,
.nvbvc iframe,
.nvbvc canvas,
.nvbvc svg {
    max-width: 100%;
}

.nvbvc img,
.nvbvc video {
    display: block;
    width: auto;
    height: auto;
    margin: 18px auto;
    border-radius: 12px;
}

.nvbvc iframe {
    display: block;
    width: 100% !important;
    min-height: 320px;
    border: 0;
    border-radius: 12px;
}

.nvbvc table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    color: var(--c-text, #e8eaf0);
    background: rgba(255, 255, 255, 0.02);
}

.nvbvc table th,
.nvbvc table td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nvbvc table th {
    color: var(--c-yellow, #fbec1f);
    background: rgba(251, 236, 31, 0.08);
    font-weight: 700;
}

.nvbvc table td {
    font-size: 0.88rem;
}

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

.nvbvc pre {
    width: 100%;
    max-width: 100%;
    margin: 18px 0;
    padding: 14px;
    overflow-x: auto;
    color: var(--c-text, #e8eaf0);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
}

.nvbvc code {
    max-width: 100%;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .nvbvc {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 16px 0;
        padding: 18px 14px;
        overflow: hidden;
        border-radius: 14px;
    }

    .nvbvc h1 {
        margin-bottom: 16px;
        font-size: 1.45rem;
    }

    .nvbvc h2 {
        margin-top: 22px;
        font-size: 1.2rem;
    }

    .nvbvc h3 {
        margin-top: 18px;
        font-size: 1.05rem;
    }

    .nvbvc h4 {
        font-size: 0.95rem;
    }

    .nvbvc p,
    .nvbvc li {
        font-size: 0.84rem;
        line-height: 1.65;
    }

    .nvbvc ul,
    .nvbvc ol {
        padding-left: 19px;
    }

    .nvbvc blockquote {
        padding: 12px;
        margin: 16px 0;
        font-size: 0.82rem;
    }

    .nvbvc table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .nvbvc table tbody,
    .nvbvc table thead {
        width: max-content;
        min-width: 600px;
    }

    .nvbvc table th,
    .nvbvc table td {
        min-width: 120px;
        padding: 9px 10px;
        font-size: 0.75rem;
    }

    .nvbvc iframe {
        width: 100% !important;
        height: auto;
        min-height: 210px;
        aspect-ratio: 16 / 9;
    }

    .nvbvc .btn,
    .nvbvc button,
    .nvbvc input,
    .nvbvc select,
    .nvbvc textarea {
        max-width: 100%;
    }

    .nvbvc input,
    .nvbvc select,
    .nvbvc textarea {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .nvbvc {
        padding: 15px 11px;
        border-radius: 12px;
    }

    .nvbvc h1 {
        font-size: 1.3rem;
    }

    .nvbvc h2 {
        font-size: 1.12rem;
    }

    .nvbvc h3 {
        font-size: 1rem;
    }

    .nvbvc p,
    .nvbvc li {
        font-size: 0.81rem;
    }
}

#bonus .cards-grid--3,
#toernooien .cards-grid--3 {
    display: block !important;
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    margin: 0 auto;
}

#bonus .slider-wrap,
#toernooien .slider-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

#bonus .slider-track,
#toernooien .slider-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    gap: 20px;
    transform: none !important;
}

#bonus .slider-track .card,
#toernooien .slider-track .card {
    display: flex;
    flex: initial !important;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    margin: 0;
}

#bonus .card--bonus,
#toernooien .card--tournament {
    overflow: hidden;
    border: 1px solid rgba(251, 236, 31, 0.24);
    border-radius: 20px;
    background: linear-gradient(
            145deg,
            rgba(15, 15, 56, 0.98) 0%,
            rgba(8, 8, 35, 0.98) 100%
    );
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#bonus .card--bonus {
    flex-direction: column;
}

#bonus .card__top {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 26px 22px;
    text-align: center;
}

#bonus .card__icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    margin-bottom: 18px;
}

#bonus .card__icon svg {
    width: 30px;
    height: 30px;
}

#bonus .card__amount {
    max-width: 100%;
    margin-bottom: 4px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
}

#bonus .card__type {
    margin-bottom: 14px;
    font-size: 0.84rem;
}

#bonus .card__name {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

#bonus .card__desc {
    max-width: 100%;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

#bonus .card__footer {
    margin-top: auto;
    padding: 17px 20px 20px;
}

#bonus .card__terms {
    min-height: 38px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

#bonus .card__footer .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
}

#toernooien .card--tournament {
    flex-direction: column;
}

#toernooien .card__header {
    min-height: 205px;
    padding: 22px 20px;
}

#toernooien .card__badge {
    max-width: 100%;
    white-space: normal;
}

#toernooien .card__title {
    margin-bottom: 8px;
    font-size: 1.15rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

#toernooien .card__desc {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

#toernooien .card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

#toernooien .card__prize-label {
    margin-bottom: 5px;
}

#toernooien .card__prize {
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
}

#toernooien .card__timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    margin-bottom: 18px;
}

#toernooien .timer-unit {
    width: 100%;
    min-width: 0;
    padding: 9px 5px;
}

#toernooien .timer-unit__val {
    font-size: 1.15rem;
}

#toernooien .timer-unit__lbl {
    font-size: 0.54rem;
    letter-spacing: 0.06em;
}

#toernooien .card__body .btn {
    width: 100%;
    min-width: 0;
    margin-top: auto;
    white-space: normal;
    text-align: center;
}

#bonus .slider-dots,
#toernooien .slider-dots {
    display: none !important;
}

@media (max-width: 768px) {
    #bonus,
    #toernooien {
        overflow: hidden;
    }

    #bonus .container,
    #toernooien .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    #bonus .section__head,
    #toernooien .section__head {
        width: 100%;
        max-width: 100%;
        margin-bottom: 26px;
        text-align: center;
    }

    #bonus .section__title,
    #toernooien .section__title {
        max-width: 100%;
        font-size: 1.45rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    #bonus .section__desc,
    #toernooien .section__desc {
        max-width: 100%;
        font-size: 0.86rem;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    #bonus .slider-wrap,
    #toernooien .slider-wrap {
        overflow: visible;
    }

    #bonus .slider-track,
    #toernooien .slider-track {
        display: flex !important;
        grid-template-columns: none;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        padding: 2px 2px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 2px;
        overscroll-behavior-x: contain;
        transform: none !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #bonus .slider-track::-webkit-scrollbar,
    #toernooien .slider-track::-webkit-scrollbar {
        display: none;
    }

    #bonus .slider-track .card,
    #toernooien .slider-track .card {
        flex: 0 0 calc(88vw - 28px) !important;
        width: calc(88vw - 28px) !important;
        min-width: calc(88vw - 28px) !important;
        max-width: 340px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    #bonus .card--bonus,
    #toernooien .card--tournament {
        border-radius: 16px;
    }

    #bonus .card__top {
        padding: 22px 16px;
    }

    #bonus .card__footer {
        padding: 15px 16px 17px;
    }

    #bonus .card__amount {
        font-size: 1.75rem;
    }

    #bonus .card__name {
        font-size: 1rem;
    }

    #bonus .card__desc {
        font-size: 0.82rem;
    }

    #bonus .card__terms {
        min-height: 0;
        font-size: 0.68rem;
    }

    #toernooien .card__header {
        min-height: auto;
        padding: 18px 16px;
    }

    #toernooien .card__body {
        padding: 18px 16px;
    }

    #toernooien .card__title {
        font-size: 1rem;
    }

    #toernooien .card__desc {
        font-size: 0.81rem;
    }

    #toernooien .card__prize {
        font-size: 1.65rem;
    }

    #toernooien .card__timer {
        gap: 6px;
    }

    #toernooien .timer-unit {
        padding: 8px 3px;
    }

    #toernooien .timer-unit__val {
        font-size: 1rem;
    }

    #bonus .slider-dots,
    #toernooien .slider-dots {
        display: flex !important;
        justify-content: center;
        gap: 7px;
        margin-top: 14px;
    }
}

@media (max-width: 420px) {
    #bonus .container,
    #toernooien .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    #bonus .slider-track .card,
    #toernooien .slider-track .card {
        flex-basis: calc(100vw - 34px) !important;
        width: calc(100vw - 34px) !important;
        min-width: calc(100vw - 34px) !important;
    }

    #toernooien .card__timer {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
    }

    #toernooien .timer-unit__val {
        font-size: 0.92rem;
    }

    #toernooien .timer-unit__lbl {
        font-size: 0.48rem;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 100000 !important;
        background: var(--c-navy, #0a0a35);
        isolation: isolate;
    }

    .header__inner {
        position: relative;
        z-index: 100003;
        width: 100%;
        height: 58px;
        min-height: 58px;
        padding: 0 12px;
    }

    body {
        padding-top: 58px;
    }

    .header__logo {
        position: relative;
        z-index: 100004;
        min-width: 0;
    }

    .header__logo img {
        width: auto;
        height: 32px;
        max-width: 92px;
        object-fit: contain;
    }

    .header__nav,
    .header__online,
    .lang-select {
        display: none !important;
    }

    .header__right {
        position: relative;
        z-index: 100004;
        gap: 6px;
        margin-left: auto;
    }

    .header__right > .btn {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.67rem;
        line-height: 1;
    }

    .header__right > .btn svg {
        width: 12px;
        height: 12px;
    }

    .burger {
        position: relative;
        z-index: 100005;
        display: flex !important;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 7px;
        border: 1px solid rgba(251, 236, 31, 0.2);
        border-radius: 8px;
        background: rgba(251, 236, 31, 0.06);
    }

    .burger__line {
        width: 20px;
    }

    .mobile-menu {
        position: fixed !important;
        top: 58px !important;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100002 !important;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: calc(100dvh - 58px);
        max-height: calc(100dvh - 58px);
        padding: 14px 12px 24px;
        gap: 7px;
        overflow-x: hidden;
        overflow-y: auto;
        background: #0a0a35 !important;
        border-top: 1px solid rgba(251, 236, 31, 0.14);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .mobile-menu__link {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        min-height: 48px;
        gap: 11px;
        padding: 12px 13px;
        color: var(--c-text, #e8eaf0);
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.35;
        border: 1px solid var(--c-border, #1e1e5a);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
    }

    .mobile-menu__link svg {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        color: var(--c-yellow, #fbec1f);
    }

    .mobile-menu__btns {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 9px;
        margin-top: auto;
        padding-top: 16px;
    }

    .mobile-menu__btns .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 11px 12px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
   
    .header__right > .btn--yellow {
        padding: 7px 8px;
        font-size: 0.62rem;
    }

    .header__right > .btn--yellow svg {
        display: none;
    }

    .mobile-menu {
        padding-left: 10px;
        padding-right: 10px;
    }
}