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

:root {
    --c-bg: #041529;
    --c-header: #071b36;
    --c-btn-primary: #ed6c70;
    --c-btn-secondary: #fbfafc;
    --c-text: #e8eaf0;
    --c-text-muted: #8a9ab5;
    --c-text-dark: #0d1f35;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-card: #0a2040;
    --c-card-hover: #0d2850;
    --c-accent: #ed6c70;
    --c-gold: #f0c040;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.38);
    --shadow-btn: 0 4px 20px rgba(237, 108, 112, 0.35);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font: 'Inter', sans-serif;
    --container-max: 1240px;
    --gutter: 20px;
}

*, *::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;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.wp-caption {
    display: none;
}

.wp-block-spacer {
    display: block;
    height: 1px;
}

.widget {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.d4k9x {
    display: none;
    visibility: hidden;
    pointer-events: none;
}

.m7r2p {
    position: absolute;
    left: -9999px;
    top: -9999px;
    overflow: hidden;
}

.q1v8z {
    color: transparent;
    font-size: 0;
    line-height: 0;
    pointer-events: none;
}

.x9c3w {
    --unused-var-1: 1;
}

.b5f1a {
    --unused-var-2: 2;
}

.h3m6k {
    --unused-var-3: 3;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

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

.btn--primary:hover {
    background: #f57f82;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(237, 108, 112, 0.5);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: var(--c-text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn--secondary:hover {
    background: #ececec;
    transform: translateY(-2px);
}

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

.btn--outline:hover {
    background: rgba(251, 250, 252, 0.1);
    transform: translateY(-2px);
}

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

.btn--sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-wrap: balance;
}

.section-desc {
    font-size: 1rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.block-sep {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(237, 108, 112, 0.4), transparent);
    margin: 0;
    border: none;
}

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

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

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

/* ===== HEADER ===== */
.site-header {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.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;
    text-decoration: none;
    flex-shrink: 0;
}

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

.header-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.7;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-right: 4px;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

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

.burger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 999;
    padding: 24px var(--gutter);
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--c-border);
    transition: all var(--transition);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mobile-menu a svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 21, 41, 0.92) 40%, rgba(4, 21, 41, 0.55) 75%, rgba(4, 21, 41, 0.2) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(237, 108, 112, 0.15);
    border: 1px solid rgba(237, 108, 112, 0.3);
    color: var(--c-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    animation: pulse-dot 1.8s infinite;
}

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

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

.hero-desc {
    font-size: 1.05rem;
    color: rgba(232, 234, 240, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-bonus-box {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(10, 32, 64, 0.85);
    border: 1.5px solid rgba(237, 108, 112, 0.35);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    margin-bottom: 26px;
    backdrop-filter: blur(8px);
}

.hero-bonus-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.hero-bonus-amount {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
}

.hero-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.hero-promo-label {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(7, 27, 54, 0.9);
    border: 1.5px solid var(--c-accent);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.promo-code-text {
    padding: 9px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
}

.promo-copy-btn {
    background: var(--c-accent);
    color: #fff;
    border: none;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-copy-btn:hover {
    background: #f57f82;
}

.promo-copy-btn svg {
    width: 14px;
    height: 14px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== BLOCKS ===== */
.content-block {
    padding: 64px 0;
}

.content-block + .content-block {
    padding-top: 0;
}

.block-header {
    margin-bottom: 36px;
}

/* ===== WINNERS TABLE ===== */
.winners-block {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin: 0 0 8px;
}

.winners-header {
    display: grid;
    grid-template-columns: 48px 1fr 1fr 110px;
    gap: 0;
    padding: 12px 20px;
    background: rgba(7, 27, 54, 0.8);
    border-bottom: 1px solid var(--c-border);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

.winner-row {
    display: grid;
    grid-template-columns: 48px 1fr 1fr 110px;
    gap: 0;
    padding: 11px 20px;
    border-bottom: 1px solid var(--c-border);
    align-items: center;
    transition: background var(--transition);
    font-size: 0.9rem;
}

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

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

.winner-rank {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.winner-rank.gold {
    color: #f0c040;
    font-size: 1rem;
}

.winner-rank.silver {
    color: #c0c8d8;
    font-size: 1rem;
}

.winner-rank.bronze {
    color: #d4906a;
    font-size: 1rem;
}

.winner-nick {
    font-weight: 600;
    color: var(--c-text);
}

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

.winner-amount {
    font-weight: 700;
    color: #4ade80;
    text-align: right;
    font-size: 0.92rem;
}

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

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-card);
}

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

.tournament-card:hover {
    background: var(--c-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(237, 108, 112, 0.1);
    border: 1px solid rgba(237, 108, 112, 0.2);
    padding: 3px 9px;
    border-radius: 100px;
    width: fit-content;
}

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

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

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

.tournament-prize {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-gold);
}

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

.tournament-timer svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.timer-display {
    font-weight: 700;
    color: var(--c-text);
    font-variant-numeric: tabular-nums;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.88rem;
}

/* Slider (mobile) */
.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.slider-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
}

.slider-btn svg {
    width: 16px;
    height: 16px;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all var(--transition);
}

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

/* ===== APP INFO TABLE ===== */
.app-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

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

.app-table {
    width: 100%;
    min-width: 380px;
    border-collapse: collapse;
    background: var(--c-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--c-border);
}

.app-table th,
.app-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9rem;
    line-height: 1.5;
}

.app-table tr:last-child th,
.app-table tr:last-child td {
    border-bottom: none;
}

.app-table th {
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    width: 42%;
    background: rgba(7, 27, 54, 0.6);
}

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

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

.app-download-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

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

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

.dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.dl-btn:hover {
    border-color: var(--c-accent);
    background: var(--c-card-hover);
    transform: translateY(-2px);
}

.dl-btn-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.dl-btn-icon svg {
    width: 30px;
    height: 30px;
}

.dl-btn-text .dl-btn-label {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    letter-spacing: 0.04em;
}

.dl-btn-text .dl-btn-store {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* ===== BONUSES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.bonus-card:hover {
    background: var(--c-card-hover);
    transform: translateY(-4px);
}

.bonus-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(237, 108, 112, 0.12);
    border: 1px solid rgba(237, 108, 112, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-accent);
}

.bonus-icon svg {
    width: 26px;
    height: 26px;
}

.bonus-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(237, 108, 112, 0.1);
    padding: 3px 9px;
    border-radius: 100px;
    width: fit-content;
}

.bonus-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
}

.bonus-desc {
    font-size: 0.87rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    flex: 1;
}

/* ===== DEMO GAME ===== */
.demo-block-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

.game-selector {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.game-selector-header {
    padding: 14px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
    background: rgba(7, 27, 54, 0.6);
}

.game-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    cursor: pointer;
    transition: all var(--transition);
}

.game-option:last-child {
    border-bottom: none;
}

.game-option:hover {
    background: rgba(255, 255, 255, 0.04);
}

.game-option.active {
    background: rgba(237, 108, 112, 0.1);
    border-left: 3px solid var(--c-accent);
}

.game-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.game-option-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-text);
}

.game-option-provider {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.game-frame-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-frame-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.game-frame-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.game-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--c-border);
    background: #000;
    display: block;
}

.game-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-cta {
    background: rgba(237, 108, 112, 0.08);
    border: 1px solid rgba(237, 108, 112, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.game-cta-text {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.game-cta-text strong {
    color: #fff;
}

/* ===== REVIEW CONTENT ===== */
.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-card);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 32px;
}

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

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

.author-title {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-top: 2px;
}

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

.author-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--c-accent);
    opacity: 0.85;
    transition: opacity var(--transition);
}

.author-link:hover {
    opacity: 1;
}

.author-link svg {
    width: 13px;
    height: 13px;
}

.review-content {
    color: var(--c-text);
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 14px;
    line-height: 1.3;
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
}

.review-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e0e4f0;
    margin: 18px 0 8px;
}

.review-content p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--c-text);
    margin: 0 0 16px;
}

.review-content a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-content a:hover {
    text-decoration: none;
}

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

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

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

.review-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--c-text);
    margin-bottom: 4px;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(7, 27, 54, 0.5);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 16px auto;
    border: 1px solid var(--c-border);
}

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

.review-content th {
    background: rgba(7, 27, 54, 0.7);
    font-weight: 600;
    color: var(--c-text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-content tr:last-child td {
    border-bottom: none;
}

.review-content td {
    color: var(--c-text);
}

.review-content strong {
    font-weight: 700;
    color: #fff;
}

.review-content em {
    font-style: italic;
    color: var(--c-text-muted);
}

.review-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(237, 108, 112, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: rgba(232, 234, 240, 0.85);
}

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

/* ===== SECURITY ===== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.security-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-card:hover {
    background: var(--c-card-hover);
    border-color: rgba(74, 222, 128, 0.2);
}

.security-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
}

.security-icon svg {
    width: 22px;
    height: 22px;
}

.security-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
}

.security-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.18);
    padding: 3px 9px;
    border-radius: 100px;
    width: fit-content;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto;
}

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

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

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

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

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

.faq-icon svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: rgba(237, 108, 112, 0.15);
}

.faq-item.open .faq-icon svg {
    transform: rotate(45deg);
    color: var(--c-accent);
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--c-border);
    padding-top: 16px;
}

.faq-item.open .faq-answer {
    display: block;
}

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

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

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

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

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

.footer-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

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

.footer-social-link:hover {
    background: rgba(237, 108, 112, 0.12);
    border-color: rgba(237, 108, 112, 0.3);
    color: var(--c-accent);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

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

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

.footer-links a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.87rem;
    color: var(--c-accent);
    margin-top: 10px;
}

.footer-email svg {
    width: 14px;
    height: 14px;
}

.footer-mid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 28px;
}

.footer-logos-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logos-label {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
}

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

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

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-badge svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.footer-badge.trust {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.05);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--c-border);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-legal {
    font-size: 0.78rem;
    color: rgba(138, 154, 181, 0.75);
    line-height: 1.7;
    max-width: 900px;
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(237, 108, 112, 0.6);
    color: var(--c-accent);
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(138, 154, 181, 0.6);
}

/* ===== PROMO WIDGET ===== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #071b36 0%, #0a2448 100%);
    border-top: 2px solid var(--c-accent);
    padding: 12px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.promo-widget.visible {
    transform: translateY(0);
}

.promo-widget-text {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.promo-widget-text strong {
    color: #fff;
}

.widget-promo-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(4, 21, 41, 0.8);
    border: 1.5px solid var(--c-accent);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.widget-promo-text {
    padding: 7px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
}

.widget-copy-btn {
    background: var(--c-accent);
    color: #fff;
    border: none;
    padding: 7px 12px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.widget-copy-btn:hover {
    background: #f57f82;
}

.widget-copy-btn svg {
    width: 13px;
    height: 13px;
}

.widget-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

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

/* ===== INFO PAGES ===== */
.info-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 0 72px;
}

.info-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px;
}

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

.info-content ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 16px;
}

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

.info-content a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== WP COMPAT STUBS ===== */
.wp-content {
    display: contents;
}

.elementor-section {
    display: contents;
}

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

#wpadminbar {
    display: none !important;
}

.entry-content {
    display: contents;
}

.post-thumbnail {
    display: none;
}

.yoast-breadcrumb {
    display: none;
}

.wpcf7-form {
    display: contents;
}

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

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

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

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

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

    .game-selector {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .game-selector-header {
        grid-column: 1 / -1;
    }

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

    .review-block {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 16px;
    }

    .header-nav {
        display: none;
    }

    .online-count {
        display: none;
    }

    .burger {
        display: flex;
    }

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

    .header-actions .btn--outline {
        display: none;
    }

    .hero-inner {
        padding: 44px 0 36px;
    }

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

    .bonuses-grid .bonus-card:nth-child(n+2) {
        display: none;
    }

    .tournaments-grid {
        display: block;
    }

    .slider-controls {
        display: flex;
    }

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

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

    .promo-widget {
        flex-direction: column;
        gap: 10px;
        padding: 16px var(--gutter) 20px;
    }

    .widget-close {
        top: 10px;
        right: 10px;
    }

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

    .winners-header, .winner-row {
        grid-template-columns: 36px 1fr 100px;
    }

    .winner-game {
        display: none;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

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

    .bonuses-grid .bonus-card {
        display: flex;
    }

    .bonuses-grid {
        display: block;
    }

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

    .review-block {
        padding: 20px 16px;
    }

    .tournaments-grid {
        display: block;
    }

    .footer-logos-list {
        gap: 6px;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

.info-hero {
    background: linear-gradient(135deg, var(--clr-header) 0%, #0c2d52 100%);
    padding: 36px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--clr-primary);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

.info-h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -.02em;
    line-height: 1.2;
}

.info-content-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}

.info-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px 40px;
    line-height: 1.75;
    color: var(--clr-text-muted);
}

.info-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border);
}

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

.info-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 20px 0 8px;
}

.info-content p {
    margin: 0 0 14px;
}

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

.info-content li {
    margin-bottom: 6px;
}

.info-content a {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

.info-content th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--clr-text);
    font-weight: 600;
}

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

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

.info-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-cta-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-cta-icon {
    width: 44px;
    height: 44px;
    background: rgba(237, 108, 112, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-cta-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--clr-primary);
}

.sidebar-cta-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 0;
}

.sidebar-cta-desc {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
}

.sidebar-promo-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--clr-primary);
    border-radius: 8px;
    padding: 8px 12px;
}

.sidebar-promo-code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: .08em;
    flex: 1;
}

.sidebar-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-muted);
    padding: 4px;
    border-radius: 4px;
    transition: color .2s;
    display: flex;
    align-items: center;
}

.sidebar-copy-btn:hover {
    color: var(--clr-primary);
}

.sidebar-copy-btn svg {
    width: 16px;
    height: 16px;
}

.sidebar-info-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px 22px;
}

.sidebar-info-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 14px;
}

.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .875rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 0;
}

.sidebar-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-info-list span {
    color: var(--clr-text-muted);
}

.sidebar-info-list strong {
    color: var(--clr-text);
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--clr-text);
}

.form-group label span {
    color: var(--clr-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--clr-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .95rem;
    color: var(--clr-text);
    font-family: var(--font-body);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(237, 108, 112, 0.12);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 38px;
    cursor: pointer;
}

.form-group select option {
    background: var(--clr-bg);
    color: var(--clr-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-note {
    font-size: .88rem;
    margin: 0;
    min-height: 1.2em;
}

@media (max-width: 900px) {
    .info-content-wrap {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .info-content {
        padding: 22px 18px;
    }

    .info-h1 {
        font-size: 1.5rem;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    gap: 12px;
}

.faq-item {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: linear-gradient(
            145deg,
            rgba(10, 32, 64, 0.96) 0%,
            rgba(7, 27, 54, 0.96) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.2);
    transition: border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(237, 108, 112, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.faq-item.open {
    background: linear-gradient(
            145deg,
            rgba(13, 40, 80, 0.98) 0%,
            rgba(8, 30, 58, 0.98) 100%
    );
    border-color: rgba(237, 108, 112, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(237, 108, 112, 0.04);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(
            180deg,
            #ed6c70 0%,
            #f0a070 100%
    );
    opacity: 0;
    transform: scaleY(0.35);
    transition: opacity 0.25s ease,
    transform 0.25s ease;
}

.faq-item.open::before {
    opacity: 1;
    transform: scaleY(1);
}

.faq-question {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    gap: 18px;
    padding: 18px 20px;
    color: #f5f7fb;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 650;
    line-height: 1.45;
    cursor: pointer;
    transition: color 0.22s ease,
    background 0.22s ease;
}

.faq-question:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.025);
}

.faq-question:focus-visible {
    outline: 2px solid rgba(237, 108, 112, 0.8);
    outline-offset: -3px;
}

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

.faq-item.open .faq-question {
    color: #ffffff;
}

.faq-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #a9b7ca;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.28s ease;
}

.faq-item:hover .faq-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
}

.faq-item.open .faq-icon {
    color: #ffffff;
    background: #ed6c70;
    border-color: #ed6c70;
    box-shadow: 0 5px 16px rgba(237, 108, 112, 0.3);
}

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

.faq-answer {
    display: grid !important;
    grid-template-rows: 0fr;
    width: 100%;
    min-width: 0;
    padding: 0 20px;
    color: #9eafc6;
    font-size: 0.92rem;
    line-height: 1.75;
    border-top: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows 0.32s ease,
    padding 0.32s ease,
    opacity 0.24s ease,
    border-color 0.32s ease,
    visibility 0.32s ease;
}

.faq-answer > span {
    min-height: 0;
    overflow: hidden;
    display: block;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    padding: 16px 20px 20px;
    border-top-color: rgba(255, 255, 255, 0.07);
    opacity: 1;
    visibility: visible;
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 700;
}

.faq-answer a {
    color: #ed6c70;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        min-height: 58px;
        gap: 12px;
        padding: 15px 14px;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .faq-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .faq-icon svg {
        width: 15px;
        height: 15px;
    }

    .faq-answer {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 0.86rem;
        line-height: 1.7;
    }

    .faq-item.open .faq-answer {
        padding: 14px 14px 17px;
    }
}

@media (max-width: 480px) {
    .faq-list {
        gap: 8px;
    }

    .faq-question {
        align-items: flex-start;
        min-height: 0;
        padding: 14px 12px;
        font-size: 0.86rem;
    }

    .faq-icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        margin-top: 1px;
    }

    .faq-answer {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 0.83rem;
    }

    .faq-item.open .faq-answer {
        padding: 12px 12px 15px;
    }
}

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

    body {
        min-width: 0;
    }

    .wrapper,
    main,
    .site-header,
    .hero,
    .content-block,
    .site-footer {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

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

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

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

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

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

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

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

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

    .header-actions .btn--outline {
        display: none !important;
    }

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

    .burger {
        display: flex !important;
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        align-items: center;
        justify-content: center;
        padding: 7px;
        gap: 5px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
    }

    .burger-line {
        width: 20px;
    }

    .mobile-menu {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 14px 12px 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 > a {
        width: 100%;
        min-height: 46px;
        padding: 11px 12px;
        gap: 10px;
        font-size: 0.88rem;
        border-radius: 9px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.03);
    }

    .mobile-menu > a svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: #ed6c70;
        opacity: 1;
    }

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

    .mobile-menu-btns .btn {
        width: 100%;
        min-height: 44px;
        white-space: normal;
        text-align: center;
    }

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

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

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

    .hero-inner {
        width: 100%;
        max-width: 100%;
        padding: 44px 0 30px;
    }

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

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

    .hero-desc {
        margin-bottom: 18px;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .hero-bonus-box {
        display: flex;
        width: 100%;
        max-width: 100%;
        padding: 13px 14px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .hero-bonus-label {
        font-size: 0.68rem;
    }

    .hero-bonus-amount {
        font-size: 1.12rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .hero-promo {
        width: 100%;
        margin-bottom: 16px;
        gap: 7px;
    }

    .promo-code-box {
        width: 100%;
    }

    .promo-code-text {
        flex: 1;
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.82rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .promo-copy-btn {
        flex-shrink: 0;
        padding: 8px 10px;
    }

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

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

    .content-block {
        padding: 36px 0 !important;
    }

    .content-block + .content-block {
        padding-top: 36px !important;
    }

    .block-header {
        width: 100%;
        max-width: 100%;
        margin-bottom: 22px;
    }

    .section-label {
        margin-bottom: 7px;
        font-size: 0.65rem;
    }

    .section-title {
        max-width: 100%;
        margin-bottom: 10px;
        font-size: 1.35rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
        text-wrap: initial;
    }

    .section-desc {
        max-width: 100%;
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .block-sep {
        height: 1px;
    }

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

    .winners-header,
    .winner-row {
        grid-template-columns: 30px minmax(0, 1fr) 82px !important;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        gap: 7px;
    }

    .winners-header {
        font-size: 0.62rem;
        letter-spacing: 0.03em;
    }

    .winner-row {
        min-height: 43px;
        font-size: 0.76rem;
    }

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

    .winner-rank {
        font-size: 0.72rem;
    }

    .winner-nick {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-amount {
        font-size: 0.73rem;
        white-space: nowrap;
    }

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

    .tournaments-grid.slider-track {
        display: flex !important;
        width: max-content;
        max-width: none;
        gap: 12px;
        grid-template-columns: none !important;
    }

    .tournament-card {
        width: calc(100vw - 44px);
        min-width: calc(100vw - 44px);
        max-width: 340px;
        padding: 18px 15px;
        gap: 10px;
        border-radius: 12px;
    }

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

    .tournament-title {
        font-size: 1rem;
    }

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

    .tournament-meta {
        gap: 7px;
    }

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

    .tournament-timer {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
        font-size: 0.76rem;
    }

    .timer-display {
        padding: 3px 7px;
        font-size: 0.78rem;
    }

    .tournament-card .btn {
        width: 100%;
        margin-top: auto;
    }

    .slider-controls {
        display: flex !important;
        margin-top: 16px;
    }

    .app-block-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 24px;
    }

    .app-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .app-table {
        width: 100%;
        min-width: 0 !important;
        table-layout: fixed;
        border-radius: 12px;
    }

    .app-table th,
    .app-table td {
        width: auto;
        padding: 10px 9px;
        font-size: 0.76rem;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .app-table th {
        width: 39%;
        font-size: 0.72rem;
    }

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

    .app-download-title {
        font-size: 1.15rem;
    }

    .app-download-desc {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .app-download-btns {
        gap: 9px;
    }

    .dl-btn {
        width: 100%;
        min-width: 0;
        padding: 12px 14px;
        gap: 11px;
        border-radius: 10px;
    }

    .dl-btn-icon {
        width: 34px;
        height: 34px;
    }

    .dl-btn-icon svg {
        width: 26px;
        height: 26px;
    }

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

    .dl-btn-store {
        overflow-wrap: anywhere;
    }

    .bonuses-grid {
        display: block !important;
        width: 100%;
    }

    .bonuses-grid > .slider-track,
    .bonuses-grid .slider-track[style] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 14px !important;
        transform: none !important;
    }

    .bonuses-grid .bonus-card,
    .bonuses-grid .bonus-card:nth-child(n+2) {
        display: flex !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .bonus-card {
        padding: 20px 16px;
        gap: 11px;
        border-radius: 12px;
    }

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

    .bonus-icon {
        width: 44px;
        height: 44px;
    }

    .bonus-icon svg {
        width: 22px;
        height: 22px;
    }

    .bonus-title {
        font-size: 1rem;
    }

    .bonus-amount {
        font-size: 1.35rem;
    }

    .bonus-desc {
        font-size: 0.82rem;
        line-height: 1.6;
    }

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

    .demo-block-inner {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 18px;
    }

    .game-selector {
        display: flex !important;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 11px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .game-selector-header {
        display: none;
    }

    .game-option {
        flex: 0 0 150px;
        min-width: 150px;
        padding: 10px;
        gap: 8px;
        border-bottom: none;
        border-right: 1px solid var(--c-border);
    }

    .game-option.active {
        border-left: none;
        border-bottom: 3px solid var(--c-accent);
    }

    .game-option-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .game-option-name {
        font-size: 0.78rem;
    }

    .game-option-provider {
        font-size: 0.68rem;
    }

    .game-frame-wrap {
        width: 100%;
        min-width: 0;
        gap: 12px;
    }

    .game-frame-header {
        align-items: stretch;
        flex-direction: column;
    }

    .game-frame-title {
        font-size: 1rem;
        line-height: 1.35;
    }

    .game-frame-header .btn {
        width: 100%;
    }

    .game-iframe {
        width: 100%;
        max-width: 100%;
        min-height: 210px;
        aspect-ratio: 16 / 10;
        border-radius: 10px;
    }

    .game-iframe iframe {
        width: 100%;
        height: 100%;
        min-height: 210px;
    }

    .game-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 15px 13px;
        gap: 12px;
    }

    .game-cta-text {
        font-size: 0.82rem;
        line-height: 1.55;
    }

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

    .review-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 14px !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .review-author {
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 20px;
    }

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

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

    .author-title {
        font-size: 0.73rem;
        overflow-wrap: anywhere;
    }

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

    .review-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .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 h2 {
        margin-top: 24px;
        font-size: 1.2rem;
    }

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

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

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

    .review-content ul,
    .review-content ol {
        padding-left: 18px;
    }

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

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

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

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

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

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

    .security-title {
        font-size: 0.95rem;
    }

    .security-desc {
        font-size: 0.81rem;
        line-height: 1.6;
    }

    .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;
        min-height: 54px;
        padding: 14px 12px;
        gap: 10px;
        font-size: 0.86rem;
        line-height: 1.4;
        text-align: left;
    }

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

    .faq-icon {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .faq-answer {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 0.82rem;
        line-height: 1.65;
    }

    .faq-item.open .faq-answer {
        padding: 12px 12px 15px;
    }

    .site-footer {
        padding-bottom: 80px;
    }

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

    .footer-logo-wrap,
    .footer-col,
    .footer-mid,
    .footer-bottom-inner {
        width: 100%;
        min-width: 0;
    }

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

    .footer-logos-list {
        gap: 6px;
    }

    .footer-badge {
        padding: 6px 8px;
        font-size: 0.68rem;
    }

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

    .promo-widget {
        width: 100%;
        max-width: 100%;
        padding: 12px 40px 12px 12px;
        gap: 8px;
    }

    .promo-widget-text {
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: center;
    }

    .widget-promo-box {
        width: 100%;
        max-width: 320px;
    }

    .widget-promo-text {
        flex: 1;
        min-width: 0;
        padding: 7px 9px;
        font-size: 0.76rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

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

    .header-logo img {
        max-width: 100px;
        height: 29px;
    }

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

    .hero-inner {
        padding-top: 36px;
    }

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

    .hero-desc {
        font-size: 0.82rem;
    }

    .hero-bonus-amount {
        font-size: 1rem;
    }

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

    .winners-header,
    .winner-row {
        grid-template-columns: 26px minmax(0, 1fr) 72px !important;
        padding-left: 7px;
        padding-right: 7px;
        gap: 5px;
    }

    .winner-row {
        font-size: 0.7rem;
    }

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

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

    .app-table th,
    .app-table td {
        padding: 8px 7px;
        font-size: 0.7rem;
    }

    .game-option {
        flex-basis: 135px;
        min-width: 135px;
    }

    .review-block {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}