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

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-surface: #1d1e24;
    --c-surface2: #22232a;
    --c-border: #2c2d36;
    --c-primary: #13ca90;
    --c-primary-hover: #0fb87e;
    --c-secondary: #3d18a4;
    --c-secondary-hover: #4e22c8;
    --c-text: #e8eaf0;
    --c-text-muted: #8a8d9e;
    --c-text-dim: #5a5d70;
    --c-gold: #f5c842;
    --c-danger: #e84040;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 24px rgba(19, 202, 144, 0.18);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Satoshi', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--c-bg);
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

.xk7f2 {
    display: none;
}

.wp-content-loader {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    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.07);
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--c-primary);
    color: #0d0e12;
    box-shadow: 0 2px 16px rgba(19, 202, 144, 0.3);
}

.btn-primary:hover {
    background: var(--c-primary-hover);
    color: #0d0e12;
    box-shadow: 0 4px 24px rgba(19, 202, 144, 0.45);
}

.btn-secondary {
    background: var(--c-secondary);
    color: #fff;
    box-shadow: 0 2px 16px rgba(61, 24, 164, 0.3);
}

.btn-secondary:hover {
    background: var(--c-secondary-hover);
    color: #fff;
    box-shadow: 0 4px 24px rgba(61, 24, 164, 0.45);
}

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

.btn-outline:hover {
    background: var(--c-primary);
    color: #0d0e12;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

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

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

.btn-sm {
    padding: 7px 15px;
    font-size: 0.82rem;
}

.tag-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tag-badge--green {
    background: rgba(19, 202, 144, 0.15);
    color: var(--c-primary);
}

.tag-badge--purple {
    background: rgba(61, 24, 164, 0.25);
    color: #a67bff;
}

.tag-badge--gold {
    background: rgba(245, 200, 66, 0.15);
    color: var(--c-gold);
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.2;
    text-wrap: balance;
}

.section-desc {
    color: var(--c-text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-top: 10px;
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 68px;
}

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

.header-logo img {
    height: 38px;
    width: auto;
}

.header-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-text);
    letter-spacing: -0.01em;
}

.header-logo-text span {
    color: var(--c-primary);
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-text-muted);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--c-primary);
    background: rgba(19, 202, 144, 0.08);
}

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

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

.header-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: rgba(19, 202, 144, 0.08);
    border: 1px solid rgba(19, 202, 144, 0.2);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-primary);
    white-space: nowrap;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(19, 202, 144, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 5px rgba(19, 202, 144, 0);
    }
}

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

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 20px;
    overflow-y: auto;
    z-index: 998;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-menu .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.mobile-menu .nav-link:hover {
    border-color: rgba(19, 202, 144, 0.2);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-footer .btn {
    width: 100%;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/truel-banner.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.38);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 22, 26, 0.85) 0%, rgba(61, 24, 164, 0.18) 50%, rgba(19, 202, 144, 0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 70px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-wrap: balance;
    margin-bottom: 18px;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(232, 234, 240, 0.8);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 36px;
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(245, 200, 66, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-top: 8px;
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.promo-code {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
    font-variant-numeric: tabular-nums;
    background: rgba(245, 200, 66, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(245, 200, 66, 0.4);
}

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

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(232, 234, 240, 0.6);
    font-weight: 500;
}

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

.section-head {
    margin-bottom: 40px;
}

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

/* ===================== JACKPOTS ===================== */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

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

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-secondary), var(--c-primary));
}

.jackpot-card--mega {
    border-color: rgba(245, 200, 66, 0.3);
}

.jackpot-card--mega::before {
    background: linear-gradient(90deg, #d4a000, var(--c-gold));
}

.jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}

.jackpot-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.jackpot-card--mega .jackpot-amount {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.jackpot-ticker {
    font-size: 0.75rem;
    color: var(--c-text-dim);
    margin-top: 6px;
}

.jackpot-ticker span {
    color: var(--c-primary);
    font-weight: 600;
}

/* ===================== WINNERS ===================== */
.winners-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.winners-header {
    display: grid;
    grid-template-columns: 40px 1fr 1fr auto;
    padding: 14px 20px;
    background: var(--c-surface2);
    border-bottom: 1px solid var(--c-border);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-text-dim);
    gap: 12px;
}

.winner-row {
    display: grid;
    grid-template-columns: 40px 1fr 1fr auto;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(44, 45, 54, 0.6);
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}

.winner-row:last-child {
    border-bottom: none;
}

.winner-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.winner-rank {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--c-text-dim);
    text-align: center;
}

.winner-rank--1 {
    color: var(--c-gold);
}

.winner-rank--2 {
    color: #c0c0c0;
}

.winner-rank--3 {
    color: #cd7f32;
}

.winner-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.winner-game {
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.winner-amount {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--c-primary);
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

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

.tournament-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.tournament-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-secondary), var(--c-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.tournament-card:hover::after {
    transform: scaleX(1);
}

.tournament-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(61, 24, 164, 0.3), rgba(19, 202, 144, 0.15));
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.tournament-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.25;
}

.tournament-desc {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    flex: 1;
}

.tournament-prize {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
}

.tournament-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

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

.timer-unit {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: 5px;
    padding: 3px 7px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--c-text);
    font-variant-numeric: tabular-nums;
    min-width: 28px;
    text-align: center;
}

.timer-sep {
    color: var(--c-text-dim);
    font-weight: 800;
}

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

.slider-dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

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

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

/* ===================== APP INFO ===================== */
.app-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.app-table th, .app-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    vertical-align: top;
}

.app-table th {
    background: var(--c-surface2);
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    width: 42%;
}

.app-table td {
    color: var(--c-text);
}

.app-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.app-table-wrap {
    overflow-x: auto;
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-download-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.app-download-desc {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    color: var(--c-text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.app-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(19, 202, 144, 0.05);
}

.app-btn svg {
    flex-shrink: 0;
}

.app-btn-label {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    font-weight: 400;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* ===================== SLOT MINI GAME ===================== */
.slot-block {
    background: linear-gradient(135deg, #1a1040 0%, var(--c-surface) 60%, #0f2a20 100%);
    border: 1px solid rgba(61, 24, 164, 0.4);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slot-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(61, 24, 164, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
}

.reel {
    width: 90px;
    height: 90px;
    background: var(--c-surface2);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    transition: transform 0.1s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    75% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

.reel.win {
    border-color: var(--c-primary);
    box-shadow: 0 0 20px rgba(19, 202, 144, 0.4);
}

.spin-btn {
    padding: 16px 44px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.slot-result {
    margin-top: 22px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}

.slot-win-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-primary);
    animation: fade-in 0.4s ease;
}

.slot-lose-text {
    font-size: 1rem;
    color: var(--c-text-muted);
    animation: fade-in 0.4s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* ===================== CONTENT REVIEW ===================== */
.content-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
}

.author-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

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

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3px;
}

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

.author-bio {
    font-size: 0.82rem;
    color: var(--c-text-dim);
    line-height: 1.55;
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.author-links a {
    font-size: 0.78rem;
    color: var(--c-secondary);
}

.author-links a:hover {
    color: var(--c-primary);
}

.content-body h2 {
    font-size: 1.45rem;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--c-text);
}

.content-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--c-text);
}

.content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 18px 0 8px;
    color: var(--c-text);
}

.content-body p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

.content-body ul, .content-body ol {
    margin: 0 0 16px 22px;
}

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

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

.content-body li {
    margin-bottom: 7px;
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-body strong {
    color: var(--c-text);
    font-weight: 700;
}

.content-body em {
    font-style: italic;
}

.content-body a {
    color: var(--c-secondary);
}

.content-body a:hover {
    color: var(--c-primary);
}

.content-body blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 18px;
    margin: 18px 0;
    background: rgba(19, 202, 144, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.88rem;
    overflow-x: auto;
    display: block;
}

.content-body table th, .content-body table td {
    border: 1px solid var(--c-border);
    padding: 10px 14px;
    text-align: left;
}

.content-body table th {
    background: var(--c-surface2);
    font-weight: 700;
    color: var(--c-text);
}

.content-body table td {
    color: var(--c-text-muted);
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

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

.steps-table th {
    background: var(--c-surface2);
    color: var(--c-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 14px 18px;
    text-align: left;
    border: 1px solid var(--c-border);
}

.steps-table td {
    padding: 16px 18px;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    vertical-align: top;
    line-height: 1.6;
}

.steps-table td:first-child {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--c-primary);
    width: 60px;
}

.steps-table td strong {
    color: var(--c-text);
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

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

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

.table-wrap .steps-table {
    margin: 0;
}

.table-wrap .steps-table th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.table-wrap .steps-table th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 56px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 36px;
}

.footer-brand {
}

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

.footer-logo img {
    height: 34px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-text);
}

.footer-logo-text span {
    color: var(--c-primary);
}

.footer-desc {
    font-size: 0.84rem;
    color: var(--c-text-dim);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(19, 202, 144, 0.08);
}

.footer-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--c-text-dim);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--c-primary);
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.provider-pill {
    padding: 5px 12px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    align-items: center;
}

.payment-item {
    padding: 6px 14px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
}

.trust-item {
    padding: 6px 14px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item--license {
    border-color: rgba(245, 200, 66, 0.25);
    color: var(--c-gold);
}

.trust-item--age {
    background: var(--c-danger);
    color: #fff;
    border-color: var(--c-danger);
    font-size: 0.85rem;
    font-weight: 900;
    padding: 5px 11px;
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: var(--c-text-dim);
    line-height: 1.6;
}

.footer-copyright a {
    color: var(--c-text-dim);
}

.footer-copyright a:hover {
    color: var(--c-primary);
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--c-text-dim);
    max-width: 600px;
    line-height: 1.55;
}

.footer-email-contact {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 6px;
}

.footer-email-contact a {
    color: var(--c-secondary);
}

.footer-email-contact a:hover {
    color: var(--c-primary);
}

/* ===================== PROMO WIDGET ===================== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    padding: 12px 20px;
    background: linear-gradient(90deg, #12131a 0%, #1a1040 50%, #0d2018 100%);
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-widget.hidden {
    transform: translateY(110%);
}

.widget-text {
    font-size: 0.88rem;
    color: var(--c-text);
    font-weight: 600;
    flex: 1;
    min-width: 200px;
}

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

.widget-code-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-code {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    background: rgba(245, 200, 66, 0.1);
    border: 1px dashed rgba(245, 200, 66, 0.4);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.widget-copy-btn {
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.widget-copy-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-text);
}

.widget-copy-btn.copied {
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.widget-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: all var(--transition);
    flex-shrink: 0;
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--c-text);
}

/* ===================== INFO PAGE ===================== */
.info-page {
    padding: 60px 0 80px;
}

.info-content {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    max-width: 820px;
    margin: 0 auto;
}

.info-content h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--c-text);
}

.info-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--c-text);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 0 8px;
    color: var(--c-text);
}

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

.info-content ul {
    margin: 0 0 16px 22px;
    list-style: disc;
}

.info-content ol {
    margin: 0 0 16px 22px;
    list-style: decimal;
}

.info-content li {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 7px;
}

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

.info-content a:hover {
    color: var(--c-primary);
}

.info-content strong {
    color: var(--c-text);
    font-weight: 700;
}

.info-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.info-content table th, .info-content table td {
    border: 1px solid var(--c-border);
    padding: 11px 16px;
    text-align: left;
    vertical-align: top;
}

.info-content table th {
    background: var(--c-surface2);
    font-weight: 700;
    color: var(--c-text);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-content table td {
    color: var(--c-text-muted);
}

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

.intro-text {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 860px;
}

.disclaimer-text {
    font-size: 0.84rem;
    color: var(--c-text-dim);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: 24px;
    line-height: 1.6;
}

/* ===================== DECORATIVE DIVIDERS ===================== */
.divider-gradient {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 0;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 80;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

/* ===================== UNUSED DECORATIVE ===================== */
.wp-block-group {
    display: block;
}

.elementor-widget-container {
    box-sizing: border-box;
}

.e-con-inner {
    width: 100%;
}

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

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

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

.site-main {
    display: block;
}

.d9x2k {
    display: none;
    height: 0;
    overflow: hidden;
}

.b7r3m {
    visibility: hidden;
    position: absolute;
    width: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .jackpots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-top > *:first-child {
        grid-column: 1 / -1;
    }

    .app-block {
        grid-template-columns: 1fr;
    }
}

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

    .burger {
        display: flex;
    }

    .header-status {
        display: none;
    }

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

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

    .tournaments-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 8px;
    }

    .tournaments-grid::-webkit-scrollbar {
        display: none;
    }

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

    .slider-dots {
        display: flex;
    }

    .winners-header {
        grid-template-columns: 30px 1fr auto;
    }

    .winners-header .wh-game {
        display: none;
    }

    .winner-row {
        grid-template-columns: 30px 1fr auto;
    }

    .winner-row .winner-game {
        display: none;
    }

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

    .hero-stats {
        gap: 16px;
    }

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

    .content-block, .info-content {
        padding: 24px 20px;
    }

    .slot-block {
        padding: 28px 20px;
    }

    .reel {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }

    .app-block {
        padding: 24px 20px;
    }

    .promo-widget {
        flex-direction: column;
        align-items: stretch;
    }

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

    .widget-code-block {
        justify-content: center;
    }

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

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

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

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

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

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

    .tournament-card {
        min-width: 240px;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

body,
.wrapper,
main,
section,
header,
footer,
.container {
    min-width: 0;
}

.wrapper {
    width: 100%;
    max-width: 100%;
}

.container {
    width: 100%;
    min-width: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero,
.hero-content,
.hero-cta,
.hero-promo,
.hero-stats,
.section,
.section-head,
.jackpots-grid,
.jackpot-card,
.winners-block,
.winners-header,
.winner-row,
.slider-wrapper,
.tournaments-grid,
.tournament-card,
.tournament-meta,
.tournament-timer,
.timer-display,
.app-block,
.app-table-wrap,
.app-download,
.app-buttons,
.slot-block,
.slot-machine,
.content-block,
.author-card,
.content-body,
.table-wrap,
.steps-table,
.footer-top,
.footer-bottom,
.footer-providers,
.footer-payments,
.footer-trust,
.promo-widget,
.widget-code-block,
.info-page,
.info-content {
    min-width: 0;
    max-width: 100%;
}

.hero-title,
.hero-subtitle,
.promo-label,
.promo-code,
.hero-stat-value,
.hero-stat-label,
.section-title,
.section-desc,
.jackpot-name,
.jackpot-amount,
.jackpot-ticker,
.winner-name,
.winner-game,
.winner-amount,
.tournament-name,
.tournament-desc,
.tournament-prize,
.app-download-title,
.app-download-desc,
.app-btn-label,
.app-btn-text,
.slot-win-text,
.slot-lose-text,
.author-name,
.author-title,
.author-bio,
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body p,
.content-body li,
.content-body a,
.content-body td,
.content-body th,
.footer-desc,
.footer-legal,
.footer-copyright,
.widget-text,
.widget-code,
.info-content h1,
.info-content h2,
.info-content h3,
.info-content p,
.info-content li,
.info-content a,
.info-content td,
.info-content th {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.content-body img,
.info-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.content-body iframe,
.info-content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: 0;
}

.content-body pre,
.info-content pre {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.content-body code,
.info-content code {
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 1100px) {
    .container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .header-inner {
        grid-template-columns:auto minmax(0, 1fr) auto;
        gap: 12px;
    }

    .header-logo {
        min-width: 0;
    }

    .header-logo img {
        max-width: 145px;
        object-fit: contain;
    }

    .header-nav {
        min-width: 0;
        gap: 2px;
    }

    .nav-link {
        padding: 7px 9px;
        font-size: 12px;
    }

    .header-actions {
        min-width: 0;
        gap: 7px;
    }

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

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

    .footer-top {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .footer-top > *:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999;
        background: var(--c-header);
    }

    body {
        padding-top: 60px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 60px;
        min-height: 60px;
        gap: 8px;
    }

    .header-logo {
        display: flex;
        min-width: 0;
        flex: 0 1 auto;
    }

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

    .header-nav {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
        gap: 6px;
        flex: 0 0 auto;
    }

    .header-status {
        display: none;
    }

    .header-actions .btn {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .burger {
        display: flex;
        align-items: stretch;
        justify-content: center;
        width: 38px;
        height: 38px;
        margin: 0;
        padding: 8px 7px;
        flex-shrink: 0;
        position: relative;
        z-index: 100002;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 60px);
        padding: 16px 14px max(28px, env(safe-area-inset-bottom));
        background: rgba(22, 23, 27, .99);
        flex-direction: column;
        gap: 8px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .3s ease, opacity .25s ease, visibility .25s ease;
        z-index: 100001;
    }

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

    .mobile-menu .nav-link,
    .mobile-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        min-height: 48px;
        gap: 11px;
        padding: 12px 14px;
        color: var(--c-text);
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--c-border);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        white-space: normal;
    }

    .mobile-menu .nav-link svg,
    .mobile-menu a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        color: var(--c-primary);
    }

    .mobile-menu-footer {
        width: 100%;
        margin-top: auto;
    }

    .mobile-menu-footer .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        width: 100%;
        min-height: auto;
        align-items: flex-end;
    }

    .hero-bg {
        background-position: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(21, 22, 26, .25) 0%, rgba(21, 22, 26, .82) 48%, rgba(21, 22, 26, .99) 100%);
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 58px 0 38px;
    }

    .hero-eyebrow {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .hero-title {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.12;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-cta {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-cta .btn {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        padding: 11px 15px;
        white-space: normal;
        text-align: center;
    }

    .hero-promo {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        padding: 13px 14px;
    }

    .promo-label,
    .promo-code {
        width: 100%;
        text-align: center;
    }

    .promo-code {
        min-width: 0;
        font-size: 15px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-stat {
        width: 100%;
        padding: 12px 10px;
        text-align: center;
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--c-border);
        border-radius: 10px;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .section {
        width: 100%;
        padding: 44px 0;
    }

    .section-head {
        width: 100%;
        max-width: 100%;
        margin-bottom: 28px;
        text-align: center;
    }

    .section-label {
        font-size: 11px;
    }

    .section-title {
        max-width: 100%;
        font-size: 25px;
        line-height: 1.2;
    }

    .section-desc {
        max-width: 100%;
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.6;
    }

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

    .jackpot-card {
        width: 100%;
        min-width: 0;
        padding: 22px 16px;
        border-radius: 14px;
    }

    .jackpot-icon {
        font-size: 30px;
    }

    .jackpot-amount,
    .jackpot-card--mega .jackpot-amount {
        font-size: 25px;
    }

    .winners-block {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
        overflow: hidden;
    }

    .winners-header {
        display: none;
    }

    .winner-row {
        position: relative;
        display: grid;
        grid-template-columns:auto minmax(0, 1fr);
        width: 100%;
        min-width: 0;
        gap: 9px 11px;
        padding: 14px 13px;
    }

    .winner-rank {
        grid-row: 1 / span 2;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--c-surface2);
        border: 1px solid var(--c-border);
        border-radius: 50%;
    }

    .winner-name {
        min-width: 0;
        padding-right: 90px;
    }

    .winner-game {
        grid-column: 2;
        min-width: 0;
        font-size: 12px;
    }

    .winner-amount {
        position: absolute;
        top: 14px;
        right: 13px;
        max-width: 88px;
        font-size: 13px;
        text-align: right;
        white-space: normal;
    }

    .tournaments-grid {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 13px;
        padding: 0;
        overflow: visible;
    }

    .tournament-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .tournament-icon {
        width: 42px;
        height: 42px;
    }

    .tournament-name {
        font-size: 16px;
    }

    .tournament-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .tournament-prize {
        font-size: 21px;
    }

    .tournament-timer {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 8px;
    }

    .timer-display {
        display: grid;
        grid-template-columns:repeat(7, auto);
        justify-content: start;
        width: 100%;
        max-width: 100%;
        gap: 3px;
    }

    .timer-unit {
        min-width: 27px;
        padding: 4px 5px;
        font-size: 12px;
    }

    .slider-dots {
        display: none;
    }

    .app-block {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 26px;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .app-block > * {
        width: 100%;
        min-width: 0;
    }

    .app-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        border: 1px solid var(--c-border);
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .app-table {
        width: 100%;
        min-width: 540px;
    }

    .app-table th,
    .app-table td {
        padding: 9px 11px;
        font-size: 12px;
    }

    .app-download {
        width: 100%;
        gap: 14px;
    }

    .app-download-title {
        font-size: 23px;
    }

    .app-download-desc {
        font-size: 14px;
    }

    .app-buttons {
        width: 100%;
    }

    .app-btn {
        width: 100%;
        min-width: 0;
        padding: 12px 14px;
    }

    .app-btn-text {
        min-width: 0;
    }

    .slot-block {
        width: 100%;
        max-width: 100%;
        padding: 26px 14px;
        border-radius: 16px;
    }

    .slot-machine {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        width: 100%;
        max-width: 300px;
        gap: 7px;
        margin: 24px auto;
    }

    .reel {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 1/1;
        font-size: 32px;
        border-radius: 10px;
    }

    .spin-btn {
        width: 100%;
        max-width: 320px;
        padding: 13px 16px;
        font-size: 15px;
        white-space: normal;
    }

    .slot-result {
        width: 100%;
        min-height: 60px;
    }

    .slot-win-text {
        font-size: 18px;
    }

    .content-block {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .author-card {
        display: grid;
        grid-template-columns:auto minmax(0, 1fr);
        width: 100%;
        gap: 12px;
        padding: 15px 13px;
        margin-bottom: 24px;
    }

    .author-card > div {
        min-width: 0;
    }

    .author-avatar {
        width: 46px;
        height: 46px;
    }

    .author-links {
        width: 100%;
        gap: 8px;
    }

    .content-body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .content-body h1 {
        font-size: 25px;
        line-height: 1.2;
    }

    .content-body h2 {
        font-size: 21px;
        line-height: 1.25;
    }

    .content-body h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    .content-body h4 {
        font-size: 16px;
    }

    .content-body p,
    .content-body li {
        font-size: 14px;
        line-height: 1.7;
    }

    .content-body ul,
    .content-body ol {
        margin-left: 0;
        padding-left: 20px;
    }

    .content-body blockquote {
        margin: 16px 0;
        padding: 12px 13px;
    }

    .content-body table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 560px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .content-body table th,
    .content-body table td {
        padding: 9px 11px;
        font-size: 12px;
    }

    .table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .steps-table {
        width: 100%;
        min-width: 580px;
    }

    .steps-table th,
    .steps-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .footer-top {
        grid-template-columns:1fr;
        width: 100%;
        gap: 26px;
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .footer-top > *:first-child {
        grid-column: auto;
    }

    .footer-brand,
    .footer-col {
        width: 100%;
        min-width: 0;
    }

    .footer-logo img {
        max-width: 145px;
    }

    .footer-providers,
    .footer-payments,
    .footer-trust {
        width: 100%;
        gap: 7px;
    }

    .provider-pill,
    .payment-item,
    .trust-item {
        max-width: 100%;
        min-width: 0;
        padding: 6px 10px;
        font-size: 11px;
        white-space: normal;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 14px;
    }

    .footer-legal {
        max-width: 100%;
    }

    .promo-widget {
        left: 8px;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        width: auto;
        max-width: none;
        padding: 13px 38px 13px 12px;
        border: 1px solid var(--c-border);
        border-radius: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
        max-height: calc(100dvh - 16px);
        overflow-y: auto;
    }

    .widget-text {
        width: 100%;
        min-width: 0;
        text-align: center;
        font-size: 12px;
    }

    .widget-code-block {
        display: grid;
        grid-template-columns:minmax(0, 1fr) auto;
        width: 100%;
        gap: 7px;
    }

    .widget-code {
        min-width: 0;
        padding: 7px 8px;
        font-size: 13px;
        text-align: center;
    }

    .widget-copy-btn {
        padding: 7px 10px;
    }

    .promo-widget .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .widget-close {
        position: absolute;
        top: 7px;
        right: 7px;
    }

    .info-page {
        width: 100%;
        padding: 36px 0 50px;
    }

    .info-content {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .info-content h1 {
        font-size: 25px;
        line-height: 1.2;
    }

    .info-content h2 {
        font-size: 21px;
    }

    .info-content h3 {
        font-size: 18px;
    }

    .info-content p,
    .info-content li {
        font-size: 14px;
        line-height: 1.7;
    }

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

    .info-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 560px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .info-content table th,
    .info-content table td {
        padding: 9px 11px;
        font-size: 12px;
    }

    .scroll-top {
        right: 12px;
        bottom: 90px;
        width: 38px;
        height: 38px;
    }
}

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

    body {
        padding-top: 58px;
    }

    .header-inner {
        height: 58px;
        min-height: 58px;
    }

    .header-logo img {
        max-width: 102px;
        height: 31px;
    }
    
    .header-actions .btn-outline,
    .header-actions .btn-ghost {
        display: none;
    }

    .header-actions .btn-primary {
        padding: 7px 9px;
        font-size: 10px;
    }

    .burger {
        width: 36px;
        height: 36px;
    }

    .mobile-menu {
        top: 58px;
        height: calc(100dvh - 58px);
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content {
        padding: 45px 0 30px;
    }

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

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-stats {
        grid-template-columns:1fr 1fr;
        gap: 7px;
    }

    .hero-stat {
        padding: 10px 7px;
    }

    .hero-stat-value {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .section {
        padding: 34px 0;
    }

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

    .section-desc {
        font-size: 13px;
    }

    .jackpot-card {
        padding: 19px 12px;
    }

    .jackpot-amount,
    .jackpot-card--mega .jackpot-amount {
        font-size: 22px;
    }

    .winner-name {
        padding-right: 75px;
        font-size: 13px;
    }

    .winner-avatar {
        width: 27px;
        height: 27px;
    }

    .winner-amount {
        max-width: 72px;
        font-size: 12px;
    }

    .tournament-card {
        padding: 17px 12px;
    }

    .timer-display {
        gap: 2px;
    }

    .timer-unit {
        min-width: 24px;
        padding: 3px 4px;
        font-size: 11px;
    }

    .app-block {
        padding: 18px 12px;
    }

    .app-table {
        min-width: 500px;
    }

    .slot-block {
        padding: 22px 10px;
    }

    .slot-machine {
        max-width: 260px;
        gap: 5px;
    }

    .reel {
        font-size: 29px;
    }

    .content-block,
    .info-content {
        padding: 18px 12px;
    }

    .author-card {
        padding: 13px 10px;
    }

    .content-body h1,
    .info-content h1 {
        font-size: 23px;
    }

    .content-body h2,
    .info-content h2 {
        font-size: 20px;
    }

    .content-body table,
    .info-content table {
        min-width: 500px;
    }

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

    .footer-top {
        gap: 22px;
    }

    .footer-bottom {
        text-align: left;
    }

    .widget-code-block {
        grid-template-columns:1fr;
    }
}

@media (max-width: 360px) {
    .header-logo img {
        max-width: 90px;
    }


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

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

    .slot-machine {
        max-width: 230px;
    }

    .reel {
        font-size: 26px;
    }
}