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

:root {
    --clr-bg: #041529;
    --clr-header: #071b36;
    --clr-btn-primary: #ed6c70;
    --clr-btn-secondary: #fbfafc;
    --clr-text: #e8edf5;
    --clr-text-muted: #8fa3bc;
    --clr-text-dark: #0d1f35;
    --clr-border: #122540;
    --clr-card: #071f3a;
    --clr-card-alt: #0a2444;
    --clr-accent: #ed6c70;
    --clr-accent2: #f5a623;
    --clr-green: #2ecc71;
    --clr-gold: #f5c518;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 4px 14px rgba(237, 108, 112, 0.4);
    --transition: 0.22s ease;
    --font: 'Inter', sans-serif;
}

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

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

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

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

a:hover {
    color: #f5898c;
}

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

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

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

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

.xq7k2-hidden {
    display: none;
}

.p3m9v-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.r8t4f-wp-block {
    display: block;
    position: relative;
}

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

.m5v3c-visually-hidden {
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
    background: #f5898c;
    color: #fff;
    box-shadow: 0 6px 20px rgba(237, 108, 112, 0.55);
}

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

.btn--secondary:hover {
    background: #e8e6ec;
    color: var(--clr-text-dark);
}

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

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

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

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

.btn--full {
    width: 100%;
}

.header-box {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 10px 18px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

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

.header-nav .nav-icon {
    width: 16px;
    height: 16px;
    opacity: 0.85;
}

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

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--clr-green);
    white-space: nowrap;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

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

.player-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(237, 108, 112, 0.1);
    border: 1px solid rgba(237, 108, 112, 0.25);
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--clr-btn-primary);
    white-space: nowrap;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    outline: none;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-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: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    z-index: 999;
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 8px;
    overflow-y: auto;
}

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
}

.mobile-menu-close {
    position: fixed;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--clr-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 21, 41, 0.88) 0%, rgba(4, 21, 41, 0.55) 60%, rgba(7, 27, 54, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 18px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 108, 112, 0.15);
    border: 1px solid rgba(237, 108, 112, 0.35);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-btn-primary);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

.hero-desc {
    font-size: 1.05rem;
    color: rgba(232, 237, 245, 0.85);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-btn-primary);
    display: block;
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.section {
    padding: 60px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    color: var(--clr-btn-primary);
    flex-shrink: 0;
}

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

.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-primary), transparent);
    border-radius: 2px;
    margin: 10px 0 28px;
}

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

.info-table {
    width: 100%;
    min-width: 580px;
    background: var(--clr-card);
}

.info-table tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

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

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

.info-table td {
    padding: 14px 20px;
    font-size: 0.88rem;
    vertical-align: middle;
    text-align: left;
}

.info-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 45%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-table td:last-child {
    color: var(--clr-text);
    font-weight: 500;
}

.td-icon {
    width: 32px;
    height: 32px;
    background: rgba(237, 108, 112, 0.12);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.td-icon svg {
    color: var(--clr-btn-primary);
}

.badge-good {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 113, 0.12);
    color: var(--clr-green);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.78rem;
    font-weight: 600;
}

.jackpot-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #061d3a 50%, var(--clr-bg) 100%);
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

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

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

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

.jackpot-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.jackpot-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-gold);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 24px rgba(245, 197, 24, 0.35);
}

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1;
}

.jackpot-game {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.mirror-section {
}

.mirror-timestamp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--clr-green);
    margin-bottom: 20px;
    font-weight: 500;
}

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

.mirror-table {
    width: 100%;
    min-width: 520px;
    background: var(--clr-card);
}

.mirror-table thead tr {
    background: rgba(237, 108, 112, 0.08);
}

.mirror-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--clr-border);
}

.mirror-table td {
    padding: 13px 20px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--clr-border);
    vertical-align: middle;
}

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

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

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--clr-green);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 600;
}

.mirror-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--clr-green);
    border-radius: 50%;
}

.mirror-link {
    color: var(--clr-btn-primary);
    font-weight: 600;
}

.mirror-link:hover {
    text-decoration: underline;
}

.winners-section {
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.winner-item {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: background var(--transition), transform var(--transition);
}

.winner-item:hover {
    background: var(--clr-card-alt);
    transform: translateX(4px);
}

.winner-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(237, 108, 112, 0.12);
    color: var(--clr-btn-primary);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.winner-rank.gold {
    background: rgba(245, 197, 24, 0.15);
    color: var(--clr-gold);
}

.winner-rank.silver {
    background: rgba(192, 192, 192, 0.12);
    color: #c0c0c0;
}

.winner-rank.bronze {
    background: rgba(205, 127, 50, 0.12);
    color: #cd7f32;
}

.winner-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text);
}

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

.winner-amount {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-gold);
    white-space: nowrap;
}

.winner-time {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.tournaments-section {
}

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

.tournaments-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

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

.tournament-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237, 108, 112, 0.04), transparent 60%);
    pointer-events: none;
}

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

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-btn-primary);
    background: rgba(237, 108, 112, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
}

.tournament-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

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

.tournament-prize {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-gold);
    text-shadow: 0 0 16px rgba(245, 197, 24, 0.3);
}

.tournament-prize-lbl {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

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

.timer-block {
    background: rgba(237, 108, 112, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    text-align: center;
    min-width: 44px;
}

.timer-val {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-btn-primary);
    font-variant-numeric: tabular-nums;
}

.timer-lbl {
    display: block;
    font-size: 0.6rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.timer-sep {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-btn-primary);
}

.tournament-cta {
    margin-top: 4px;
}

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

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

.slider-dot.active {
    background: var(--clr-btn-primary);
    width: 22px;
    border-radius: 4px;
}

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

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.slider-arrow:hover {
    background: var(--clr-btn-primary);
    border-color: var(--clr-btn-primary);
    color: #fff;
}

.slot-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #061525 100%);
}

.slot-machine {
    max-width: 460px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-btn-primary), var(--clr-accent2), var(--clr-btn-primary));
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.slot-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.reel {
    width: 88px;
    height: 100px;
    background: #031120;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition);
}

.reel.spinning {
    border-color: var(--clr-btn-primary);
}

.reel-inner {
    transition: transform 0.1s linear;
}

.slot-result {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.slot-win-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-green);
    animation: fadeInUp 0.4s ease;
}

.slot-lose-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

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

.review-section {
}

.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 28px;
}

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

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-bio {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

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

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--clr-btn-primary);
    background: rgba(237, 108, 112, 0.08);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.author-link:hover {
    background: rgba(237, 108, 112, 0.18);
}

.review-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--clr-text);
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: #fff;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.review-content h1 {
    font-size: 1.6rem;
}

.review-content h2 {
    font-size: 1.3rem;
}

.review-content h3 {
    font-size: 1.1rem;
}

.review-content h4 {
    font-size: 1rem;
}

.review-content p {
    margin-bottom: 16px;
}

.review-content ul, .review-content ol {
    margin: 14px 0 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.review-content li {
    padding-left: 6px;
}

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

.review-content strong, .review-content b {
    color: #fff;
    font-weight: 600;
}

.review-content em, .review-content i {
    font-style: italic;
    color: rgba(232, 237, 245, 0.85);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
}

.review-content thead tr {
    background: rgba(237, 108, 112, 0.08);
}

.review-content th, .review-content td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.88rem;
}

.review-content th {
    font-weight: 700;
    color: var(--clr-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-content blockquote {
    border-left: 3px solid var(--clr-btn-primary);
    padding: 12px 20px;
    background: rgba(237, 108, 112, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    font-style: italic;
    color: rgba(232, 237, 245, 0.85);
}

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

.review-content code {
    background: rgba(255, 255, 255, 0.07);
    padding: 2px 7px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.88em;
}

.review-content pre {
    background: #021018;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 18px 0;
}

.review-content img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    margin: 16px auto;
}

.steps-section {
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.step-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-btn-primary), #c4494d);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(237, 108, 112, 0.4);
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

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

.footer-brand {
}

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

.footer-tagline {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.footer-country img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-text);
    transition: background var(--transition), color var(--transition);
}

.social-link:hover {
    background: var(--clr-btn-primary);
    color: #fff;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-nav-col h5 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-col a {
    font-size: 0.85rem;
    color: rgba(232, 237, 245, 0.7);
    transition: color var(--transition);
}

.footer-nav-col a:hover {
    color: var(--clr-btn-primary);
}

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

.footer-logos-row {
    margin-bottom: 20px;
}

.footer-logos-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

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

.footer-logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.footer-logo-badge svg {
    opacity: 0.7;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(46, 204, 113, 0.9);
}

.footer-legal {
    font-size: 0.77rem;
    color: rgba(143, 163, 188, 0.65);
    line-height: 1.7;
    text-align: center;
}

.footer-legal a {
    color: rgba(237, 108, 112, 0.7);
}

.footer-copyright {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #07162b, #0d2244);
    border-top: 1px solid rgba(237, 108, 112, 0.3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: transform var(--transition);
}

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

.widget-text {
    font-size: 0.85rem;
    color: var(--clr-text);
}

.widget-bonus {
    font-weight: 700;
    color: var(--clr-btn-primary);
    font-size: 0.95rem;
}

.widget-close {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

.faq-section {
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-item.active {
    border-color: rgba(237, 108, 112, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--clr-text);
    gap: 12px;
    user-select: none;
}

.faq-question:hover {
    color: #fff;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--clr-btn-primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.25s ease;
}

.scroll-top {
    position: fixed;
    bottom: 72px;
    right: 20px;
    z-index: 800;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--clr-btn-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 4px 16px rgba(237, 108, 112, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #f5898c;
}

.wp-content-static {
    display: none;
}

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

.site-header {
    display: contents;
}

.entry-content {
    display: contents;
}

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

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

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

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

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

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

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .tournaments-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .tournaments-track::-webkit-scrollbar {
        height: 4px;
    }

    .tournaments-track::-webkit-scrollbar-track {
        background: var(--clr-border);
        border-radius: 2px;
    }

    .tournaments-track::-webkit-scrollbar-thumb {
        background: var(--clr-btn-primary);
        border-radius: 2px;
    }

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

    .slider-nav {
        display: flex;
    }

    .slider-arrows {
        display: flex;
    }

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

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

    .hero-stats {
        gap: 18px;
    }

    .winner-item {
        grid-template-columns: 32px 1fr auto;
    }

    .winner-time {
        display: none;
    }

    .review-content {
        padding: 20px 18px;
    }

    .section {
        padding: 44px 0;
    }

    .sticky-widget {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 14px;
    }
}

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

    .header-buttons .btn--secondary {
        display: none;
    }

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

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

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

    .slot-reels {
        gap: 6px;
    }

    .reel {
        width: 76px;
        height: 88px;
        font-size: 2.4rem;
    }

    .hero-content {
        padding: 60px 14px;
    }
}

.x9m4b-data-attr {
    display: none;
}

.k7p2q-unused-block {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

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

    body {
        font-size: 16px;
    }

    .wrapper,
    main,
    .header-box,
    .hero-section,
    .section,
    .footer-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    main > .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }

    .container,
    .section-inner,
    .footer-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .header-box {
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    .header-box > .container {
        padding: 0;
    }

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

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

    .header-logo a {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

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

    .header-nav,
    .header-meta {
        display: none !important;
    }

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

    .header-buttons .btn--secondary {
        display: none;
    }

    .header-buttons .btn--primary {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.68rem;
        line-height: 1;
        white-space: nowrap;
    }

    .burger {
        position: relative;
        z-index: 10002;
        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(255, 255, 255, 0.12);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.05);
    }

    .burger span {
        width: 20px;
        height: 2px;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 10001;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 70px 14px 24px;
        gap: 6px;
        overflow-y: auto;
        background: #071b36;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s ease;
    }

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

    .mobile-menu-close {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 10003;
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .mobile-menu > a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 46px;
        gap: 11px;
        padding: 11px 12px;
        font-size: 0.88rem;
        line-height: 1.35;
        color: var(--clr-text);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.025);
    }

    .mobile-menu > a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        color: var(--clr-btn-primary);
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-end;
    }

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

    .hero-overlay {
        background: linear-gradient(
                180deg,
                rgba(4, 21, 41, 0.18) 0%,
                rgba(4, 21, 41, 0.72) 42%,
                rgba(4, 21, 41, 0.98) 100%
        );
    }

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

    .hero-badge {
        max-width: 100%;
        margin-bottom: 12px;
        padding: 5px 10px;
        font-size: 0.66rem;
        line-height: 1.35;
        white-space: normal;
    }

    .hero-title {
        max-width: 100%;
        margin-bottom: 13px;
        font-size: clamp(1.55rem, 7.5vw, 2rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-title br {
        display: none;
    }

    .hero-desc {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 0.86rem;
        line-height: 1.6;
    }

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

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 11px 12px;
        font-size: 0.82rem;
        white-space: normal;
        text-align: center;
    }

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

    .hero-stat {
        min-width: 0;
        padding: 12px 8px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        background: rgba(7, 31, 58, 0.72);
    }

    .hero-stat-val {
        font-size: 1.15rem;
    }

    .hero-stat-lbl {
        font-size: 0.68rem;
    }

    .section {
        padding: 34px 0 !important;
    }

    .section-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title {
        display: flex;
        align-items: flex-start;
        max-width: 100%;
        gap: 9px;
        margin-bottom: 8px;
        font-size: 1.3rem;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }

    .section-title svg {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        flex: 0 0 20px;
    }

    .section-sub {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .section-divider {
        margin-bottom: 20px;
    }

    .info-table-wrap,
    .mirror-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .info-table {
        width: 100%;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .info-table tr {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        padding: 12px;
    }

    .info-table td {
        display: flex;
        width: 100% !important;
        min-width: 0;
        padding: 0;
        border: 0;
        font-size: 0.8rem;
        overflow-wrap: anywhere;
    }

    .info-table td:first-child {
        width: 100%;
        margin-bottom: 7px;
        color: var(--clr-text-muted);
        font-size: 0.72rem;
    }

    .info-table td:last-child {
        padding-left: 42px;
        color: var(--clr-text);
        font-weight: 600;
    }

    .td-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .badge-good {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .jackpot-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 12px;
    }

    .jackpot-card {
        width: 100%;
        min-width: 0;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .jackpot-card:hover {
        transform: none;
    }

    .jackpot-icon {
        margin-bottom: 7px;
        font-size: 1.7rem;
    }

    .jackpot-label {
        font-size: 0.7rem;
    }

    .jackpot-amount {
        font-size: 1.45rem;
        overflow-wrap: anywhere;
    }

    .jackpot-game {
        font-size: 0.74rem;
    }

    .mirror-timestamp {
        align-items: flex-start;
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .mirror-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mirror-table {
        width: max-content;
        min-width: 650px;
    }

    .mirror-table th,
    .mirror-table td {
        min-width: 105px;
        padding: 10px 11px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .mirror-table th:nth-child(2),
    .mirror-table td:nth-child(2) {
        min-width: 155px;
    }

    .mirror-table .btn {
        padding: 7px 10px;
        font-size: 0.7rem;
    }

    .winners-list {
        width: 100%;
        gap: 7px;
    }

    .winner-item {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr) auto !important;
        width: 100%;
        min-width: 0;
        gap: 9px;
        padding: 10px;
        border-radius: 10px;
    }

    .winner-item:hover {
        transform: none;
    }

    .winner-rank {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .winner-name {
        min-width: 0;
        font-size: 0.78rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-game {
        font-size: 0.68rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-amount {
        font-size: 0.76rem;
    }

    .winner-time {
        display: none !important;
    }

    .tournaments-slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .tournaments-track {
        display: flex !important;
        width: auto;
        max-width: none;
        gap: 12px;
        padding-bottom: 5px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tournament-card {
        flex: 0 0 calc(100vw - 48px);
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px) !important;
        max-width: 340px;
        padding: 18px 14px;
        gap: 11px;
        border-radius: 12px;
        scroll-snap-align: start;
    }

    .tournament-card:hover {
        transform: none;
    }

    .tournament-name {
        font-size: 0.96rem;
    }

    .tournament-desc {
        font-size: 0.79rem;
    }

    .tournament-prize {
        font-size: 1.15rem;
    }

    .tournament-timer {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        gap: 5px;
    }

    .timer-block {
        min-width: 0;
        padding: 6px 3px;
    }

    .timer-val {
        font-size: 0.88rem;
    }

    .timer-lbl {
        font-size: 0.52rem;
    }

    .timer-sep {
        display: none;
    }

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

    .slider-arrows,
    .slider-nav {
        display: flex !important;
    }

    .slot-machine {
        width: 100%;
        max-width: 350px;
        padding: 20px 12px;
        border-radius: 12px;
    }

    .slot-title {
        margin-bottom: 18px;
        font-size: 1rem;
    }

    .slot-reels {
        width: 100%;
        gap: 7px;
        margin-bottom: 18px;
    }

    .reel {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        max-width: 78px;
        height: 76px;
        font-size: 2rem;
    }

    .slot-result {
        min-height: 44px;
        margin-bottom: 15px;
    }

    .slot-machine .btn {
        width: 100%;
    }

    .author-card {
        align-items: flex-start;
        width: 100%;
        min-width: 0;
        gap: 11px;
        padding: 15px 13px;
        margin-bottom: 18px;
        border-radius: 11px;
    }

    .author-avatar {
        width: 43px;
        height: 43px;
        flex: 0 0 43px;
        font-size: 1rem;
    }

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

    .author-name {
        font-size: 0.9rem;
    }

    .author-bio {
        font-size: 0.71rem;
        overflow-wrap: anywhere;
    }

    .author-links {
        flex-wrap: wrap;
    }

    .review-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 13px !important;
        border-radius: 12px;
        font-size: 0.83rem;
        line-height: 1.65;
        overflow: hidden;
    }

    .review-content h1,
    .review-content h2,
    .review-content h3,
    .review-content h4,
    .review-content p,
    .review-content li,
    .review-content a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .review-content h1 {
        font-size: 1.3rem;
    }

    .review-content h2 {
        font-size: 1.16rem;
    }

    .review-content h3 {
        font-size: 1rem;
    }

    .review-content h4 {
        font-size: 0.92rem;
    }

    .review-content ul,
    .review-content ol {
        margin-left: 17px;
    }

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

    .review-content th,
    .review-content td {
        min-width: 115px;
        padding: 9px 10px;
        font-size: 0.74rem;
    }

    .review-content blockquote {
        padding: 11px 13px;
    }

    .review-content iframe,
    .review-content video {
        width: 100% !important;
        height: auto;
        min-height: 210px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 12px;
    }

    .step-card {
        width: 100%;
        min-width: 0;
        padding: 18px 15px;
        border-radius: 12px;
    }

    .step-card:hover {
        transform: none;
    }

    .step-num {
        width: 36px;
        height: 36px;
        margin-bottom: 11px;
        font-size: 0.9rem;
    }

    .step-icon {
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 0.92rem;
    }

    .step-desc {
        font-size: 0.79rem;
    }

    .steps-section .btn--lg {
        width: 100%;
        padding: 11px 12px;
        font-size: 0.8rem;
        white-space: normal;
    }

    .faq-list {
        width: 100%;
        max-width: 100%;
        gap: 8px;
    }

    .faq-item {
        width: 100%;
        min-width: 0;
        border-radius: 11px;
    }

    .faq-question {
        width: 100%;
        min-width: 0;
        gap: 10px;
        padding: 14px 12px;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .faq-question > span {
        min-width: 0;
        flex: 1;
        overflow-wrap: anywhere;
    }

    .faq-chevron {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .faq-answer {
        padding: 0 12px 14px;
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .footer-box {
        padding: 34px 0 88px;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 24px;
    }

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

    .footer-nav-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

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

    .footer-logos,
    .footer-trust {
        gap: 6px;
    }

    .footer-logo-badge,
    .trust-badge {
        max-width: 100%;
        padding: 6px 8px;
        font-size: 0.67rem;
        white-space: normal;
    }

    .footer-legal,
    .footer-copyright {
        font-size: 0.69rem;
        line-height: 1.55;
    }

    .sticky-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        gap: 7px 9px;
        padding: 9px 40px 9px 12px;
    }

    .widget-text {
        min-width: 0;
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .widget-bonus {
        font-size: 0.74rem;
        overflow-wrap: anywhere;
    }

    .sticky-widget .btn {
        padding: 8px 10px;
        font-size: 0.68rem;
    }

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

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

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

    .header-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-logo img {
        max-width: 94px;
        height: 28px;
    }

    .header-buttons .btn--primary {
        padding: 7px 8px;
        font-size: 0.62rem;
    }

    .hero-content {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .hero-stats {
        gap: 7px;
    }

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

    .section-title {
        font-size: 1.16rem;
    }

    .tournament-card {
        flex-basis: calc(100vw - 32px);
        width: calc(100vw - 32px);
        min-width: calc(100vw - 32px) !important;
    }

    .jackpot-amount {
        font-size: 1.25rem;
    }

    .reel {
        max-width: 68px;
        height: 70px;
        font-size: 1.8rem;
    }

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

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