/*
 * Champion casino — брендовая тема логотипа
 * Палитра прямо из SVG: пурпурный #FF00BD, синий #007EFF,
 * фиолетовый #7109FF, бирюза #00FFCA, золотой #FFCE00.
 * Фон — глубокий индиго с насыщенными радиальными свечениями,
 * пульсирующая сетка, золотые и бирюзовые акценты.
 */

/* ============ CSS variables ============ */
:root {
    --px: 16px;
    --main-layout-width: 1200px;

    /* Базовые фоны — тёмный индиго с тёплым фиолетовым подтоном */
    --bg-1: #080420;
    --bg-2: #100630;
    --bg-3: #160840;

    /* Карточки — лёгкий брендовый glassmorphism */
    --card-bg: rgba(22, 10, 60, 0.62);
    --card-bg-strong: rgba(28, 14, 74, 0.84);
    --card-border: rgba(113, 9, 255, 0.30);
    --card-hover-border: rgba(255, 0, 189, 0.55);

    /* Акценты — прямо из логотипа */
    --accent-1: #7109ff;   /* фиолетовый */
    --accent-2: #007eff;   /* синий */
    --accent-3: #00ffca;   /* бирюза */
    --accent-4: #ff00bd;   /* пурпурный */
    --accent-gold: #ffce00; /* золотой из animated-logo */

    --text-1: #ffffff;
    --text-2: #ddd8ff;
    --text-3: #a89fcc;
    --text-muted: #6e6490;

    --success: #00ffca;
    --danger: #ff5c8a;

    /* Градиенты — все цвета логотипа */
    --gradient-btn: linear-gradient(135deg, #ff00bd 0%, #7109ff 50%, #007eff 100%);
    --gradient-btn-hover: linear-gradient(135deg, #ff44cc 0%, #8f30ff 50%, #2a8fff 100%);
    --gradient-accent: linear-gradient(90deg, #ff00bd 0%, #7109ff 40%, #007eff 70%, #00ffca 100%);
    --gradient-gold: linear-gradient(90deg, #ffce00 0%, #ffb400 50%, #ff9a00 100%);
    --gradient-title: linear-gradient(100deg, #ffffff 0%, #e8d8ff 30%, #00ffca 80%, #ffce00 100%);
    --gradient-glass: linear-gradient(160deg, rgba(113, 9, 255, 0.18) 0%, rgba(0, 126, 255, 0.08) 60%, rgba(0, 255, 202, 0.04) 100%);

    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

/* ============ Reset & base ============ */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background-color: #080420;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-2);
    /* Более яркие свечения — opacity каждого слоя +40% */
    background:
        /* Пурпур — верхний левый, #FF00BD, ярче */
        radial-gradient(ellipse 1000px 650px at 5% 0%,   rgba(255, 0, 189, 0.36) 0%, transparent 65%),
        /* Синий — верхний правый, #007EFF, ярче */
        radial-gradient(ellipse 900px 600px at 95% 5%,   rgba(0, 126, 255, 0.38) 0%, transparent 65%),
        /* Фиолет — центр-лево, #7109FF, ярче */
        radial-gradient(ellipse 750px 550px at 15% 50%,  rgba(113, 9, 255, 0.42) 0%, transparent 62%),
        /* Бирюза — центр-право, #00FFCA, ярче */
        radial-gradient(ellipse 650px 500px at 85% 55%,  rgba(0, 255, 202, 0.20) 0%, transparent 60%),
        /* Золотой — нижний центр, #FFCE00, ярче */
        radial-gradient(ellipse 900px 450px at 50% 100%, rgba(255, 206, 0, 0.14) 0%, transparent 55%),
        /* Дополнительный пурпур — нижний левый для симметрии */
        radial-gradient(ellipse 600px 400px at 5% 95%,   rgba(255, 0, 189, 0.18) 0%, transparent 60%),
        /* Базовый фон чуть светлее */
        linear-gradient(175deg, #0c0628 0%, #160840 40%, #100530 70%, #0c0628 100%);
    background-attachment: scroll;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Декоративная сетка — ярче, более заметная */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        /* Пурпурные диагонали — заметнее */
        linear-gradient(118deg, transparent 49.2%, rgba(255, 0, 189, 0.10) 50%, transparent 50.8%),
        /* Синие диагонали */
        linear-gradient(118deg, transparent 49.2%, rgba(0, 126, 255, 0.07) 50%, transparent 50.8%),
        /* Горизонтальные золотые полосы */
        linear-gradient(0deg, transparent 96.5%, rgba(255, 206, 0, 0.06) 96.5%, rgba(255, 206, 0, 0.06) 100%);
    background-size: 140px 140px, 220px 220px, 100% 160px;
    background-position: 0 0, 70px 70px, 0 0;
    pointer-events: none;
    z-index: 0;
}

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

a {
    color: var(--accent-3);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--text-1); }

.container {
    max-width: var(--main-layout-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Utilities */
.flx { display: flex; }
.aic { align-items: center; }
.jcsb { justify-content: space-between; }
.jcc { justify-content: center; }
.fxww { flex-wrap: wrap; }
.tcenter { text-align: center; }

/* ============ Header ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(8, 4, 32, 0.96) 0%, rgba(16, 6, 48, 0.90) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(113, 9, 255, 0.28);
    padding: 14px 0;
}

/* Тонкая градиентная полоска под шапкой */
.header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.65;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(255, 0, 189, 0.50)) drop-shadow(0 0 28px rgba(113, 9, 255, 0.30));
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav a {
    color: var(--text-2);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
}

.nav a:hover { color: var(--text-1); }

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    width: 0;
    background: var(--gradient-accent);
    transition: width 0.25s ease;
}

.nav a:hover::after { width: 100%; }

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

/* ============ Кнопки — обновлённый стиль ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    color: var(--text-1);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--gradient-btn);
    border: none;
    border-radius: 999px;                                /* pill-форма */
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 10px 26px rgba(255, 0, 189, 0.30),
        0 4px 10px rgba(113, 9, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.btn:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(255, 0, 189, 0.42),
        0 6px 14px rgba(113, 9, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
    color: var(--text-1);
}
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn-lg {
    padding: 17px 44px;
    font-size: 17px;
}

/* Ghost-кнопка — прозрачная с градиентным обводом */
.btn-ghost {
    background: transparent;
    color: var(--text-1);
    padding: 11px 26px;
    box-shadow: none;
    position: relative;
    border: none;
    isolation: isolate;
}
.btn-ghost::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.btn-ghost:hover {
    background: rgba(113, 9, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 9, 255, 0.32);
}

/* ============ Hero ============ */
.hero {
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    background: rgba(140, 100, 255, 0.15);
    border: 1px solid rgba(140, 100, 255, 0.4);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-2);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-eyebrow .pulse {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-btn);
    box-shadow: 0 0 14px rgba(255, 0, 189, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    animation: pulse-scale 2.4s ease-in-out infinite;
}
@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.12;
    font-weight: 900;
    margin: 0 0 22px;
    color: var(--text-1);
    text-transform: none;
    letter-spacing: -0.5px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(113, 9, 255, 0.35);
}

.hero-content h1 .brand {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p.lead {
    font-size: 18px;
    color: var(--text-2);
    margin: 0 0 30px;
    max-width: 560px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.hero-stat {
    padding: 16px 18px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.hero-stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 40%;
    background: var(--gradient-accent);
    border-radius: 0 0 3px 0;
}
.hero-stat__num {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 4px;
    line-height: 1.1;
}
.hero-stat__lbl {
    color: var(--text-3);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Hero visual — свечение вокруг анимированного логотипа */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-visual::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background:
        radial-gradient(closest-side, rgba(255, 0, 189, 0.35) 0%, transparent 70%),
        radial-gradient(closest-side, rgba(0, 171, 255, 0.3) 0%, transparent 70%);
    background-position: 30% 30%, 70% 70%;
    background-repeat: no-repeat;
    background-size: 70% 70%, 70% 70%;
    filter: blur(30px);
    pointer-events: none;
    animation: hero-glow 6s ease-in-out infinite;
}
@keyframes hero-glow {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}
.hero-visual img {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* ============ Общая структура секций ============ */
.section {
    padding: 60px 0;
    position: relative;
}

/* Заголовок секции — «бейдж-номер» + подчёркнутый градиент */
.section-header {
    margin-bottom: 30px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border-radius: 999px;
    background: rgba(140, 100, 255, 0.12);
    border: 1px solid rgba(140, 100, 255, 0.3);
    color: var(--text-2);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.section-label__num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(113, 9, 255, 0.45);
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 8px;
    text-transform: none;
    line-height: 1.2;
    letter-spacing: -0.3px;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 3px;
    width: 68px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    margin: 32px 0 16px;
    position: relative;
    padding-left: 16px;
}
.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    border-radius: 2px;
    background: var(--gradient-accent);
}

.section-lead {
    color: var(--text-2);
    font-size: 17px;
    margin: 0 0 30px;
    max-width: 900px;
}

p { margin: 0 0 16px; color: var(--text-2); }
p strong { color: var(--text-1); font-weight: 700; }

/* ============ Таблицы (новый вид — карточная таблица) ============ */
.data-table-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.38);
    position: relative;
}

/* градиентный тонкий верхний край */
.data-table-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 15px 22px;
    text-align: left;
    color: var(--text-2);
    border-bottom: 1px solid rgba(140, 100, 255, 0.13);
    font-size: 15px;
}

.data-table th {
    background: linear-gradient(180deg, rgba(113, 9, 255, 0.24) 0%, rgba(1, 72, 255, 0.14) 100%);
    color: var(--text-1);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(113, 9, 255, 0.06); }
.data-table td:first-child {
    font-weight: 600;
    color: var(--text-1);
    width: 40%;
}

/* ============ Маркированный список (иконки-ромбы вместо прямоугольников) ============ */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.custom-list li {
    position: relative;
    padding: 10px 0 10px 34px;
    color: var(--text-2);
    font-size: 16px;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 15px;
    width: 14px;
    height: 14px;
    background: var(--gradient-accent);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(113, 9, 255, 0.55);
}
.custom-list li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 19px;
    width: 6px;
    height: 6px;
    background: rgba(10, 5, 36, 0.9);
    transform: rotate(45deg);
    border-radius: 1px;
}

/* ============ Нумерованные шаги — «чипы» с золотым ободком ============ */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    counter-reset: step;
    display: grid;
    gap: 12px;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    color: var(--text-2);
    counter-increment: step;
    transition: transform 0.25s ease, background 0.25s ease;
    background-clip: padding-box;
    border: 1px solid var(--card-border);
}

.steps-list li:hover {
    transform: translateX(6px);
    background: var(--card-bg-strong);
    border-color: var(--card-hover-border);
}

.steps-list li::before {
    content: counter(step, decimal-leading-zero);
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(255, 0, 189, 0.18) 0%, rgba(1, 72, 255, 0.15) 100%);
    border: 1px solid rgba(255, 190, 61, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(255, 190, 61, 0.1);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-top: 2px;
}

/* ============ Games / cards grids ============ */
.slot-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 20px 0 30px;
}

/* Новый вид карточек: с уголковым градиентным акцентом */
.slot-type-card {
    padding: 24px 26px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.slot-type-card::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px;
    width: 84px; height: 84px;
    background: var(--gradient-accent);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.28;
    transition: opacity 0.25s ease;
}
.slot-type-card::after {
    content: "";
    position: absolute;
    top: 8px; left: 8px;
    width: 22px; height: 22px;
    background: transparent;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 2px 0 0 0;
    opacity: 0.5;
}
.slot-type-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-hover-border);
    background: var(--card-bg-strong);
}
.slot-type-card:hover::before { opacity: 0.5; }

.slot-type-card h4 {
    margin: 0 0 8px;
    color: var(--text-1);
    font-size: 18px;
    font-weight: 700;
    padding-left: 20px;
}
.slot-type-card p {
    margin: 0;
    color: var(--text-2);
    font-size: 15px;
}
.slot-type-card p em {
    color: var(--accent-3);
    font-style: normal;
    font-weight: 600;
}

/* ============ Bonus / promo — с изображением ============ */
.promo-banner {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: center;
    background:
        radial-gradient(closest-side at 20% 30%, rgba(255, 0, 189, 0.24) 0%, transparent 70%),
        radial-gradient(closest-side at 85% 70%, rgba(0, 171, 255, 0.24) 0%, transparent 70%),
        linear-gradient(135deg, rgba(30, 20, 70, 0.72) 0%, rgba(20, 8, 46, 0.7) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 30px;
}
.promo-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.promo-banner__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.promo-banner__image img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 22px rgba(113, 9, 255, 0.4));
}

.promo-banner__text h3 {
    font-size: 26px;
    color: var(--text-1);
    margin: 0 0 14px;
    font-weight: 800;
    line-height: 1.2;
}
.promo-banner__text p {
    margin: 0 0 16px;
    color: var(--text-2);
    font-size: 16px;
}

/* Bonus deposits — таблица под баннером */
.deposits-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.deposits-table::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}
.deposits-table table {
    width: 100%;
    border-collapse: collapse;
}
.deposits-table th,
.deposits-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(140, 100, 255, 0.13);
    color: var(--text-2);
    font-size: 15px;
}
.deposits-table th {
    background: linear-gradient(180deg, rgba(113, 9, 255, 0.24) 0%, rgba(1, 72, 255, 0.14) 100%);
    color: var(--text-1);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.deposits-table tr:last-child td { border-bottom: none; }
.deposits-table td:first-child {
    color: var(--accent-gold);
    font-weight: 700;
}
.deposits-table td strong { color: var(--text-1); }

/* ============ Bonus cards — «медаль»-стиль ============ */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0 30px;
}

.bonus-card {
    padding: 28px 28px 28px 28px;
    background:
        linear-gradient(180deg, rgba(28, 18, 66, 0.55) 0%, rgba(20, 8, 46, 0.55) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
    /* Градиентный тонкий бордер */
    border: 1px solid transparent;
    background-clip: padding-box;
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 0, 189, 0.55) 0%, rgba(113, 9, 255, 0.3) 40%, rgba(0, 171, 255, 0.55) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bonus-card:hover { transform: translateY(-6px); }

.bonus-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 190, 61, 0.15);
    border: 1px solid rgba(255, 190, 61, 0.4);
    color: var(--accent-gold);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bonus-card__icon {
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-btn);
    border-radius: 16px;
    margin-bottom: 16px;
    font-size: 26px;
    box-shadow: 0 10px 24px rgba(255, 0, 189, 0.35);
}

.bonus-card h4 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--text-1);
    font-weight: 700;
}
.bonus-card p {
    margin: 0;
    color: var(--text-2);
    font-size: 15px;
}

/* ============ Payment methods — 3 колонки ============ */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0;
}

.payment-card {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.payment-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 100%;
    background: var(--gradient-accent);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}
.payment-card:hover {
    transform: translateY(-3px);
    border-color: var(--card-hover-border);
}
.payment-card:hover::before { transform: translateX(0); }

.payment-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.payment-card__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(255, 0, 189, 0.2) 0%, rgba(1, 72, 255, 0.15) 100%);
    border: 1px solid rgba(140, 100, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.payment-card h4 {
    margin: 0;
    color: var(--text-1);
    font-size: 17px;
    font-weight: 700;
}
.payment-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-2);
}

/* ============ Mobile app section — split with mob.png ============ */
.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
}

.split-block.reverse .split-image { order: 2; }

.split-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.split-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(closest-side, rgba(255, 0, 189, 0.28) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(10px);
}
.split-image img {
    position: relative;
    z-index: 1;
    max-width: 340px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
    animation: mob-float 5s ease-in-out infinite;
}
@keyframes mob-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.split-text .section-header { margin-bottom: 22px; }

/* ============ Pros & cons — таблица сравнения ============ */
.pros-cons-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}
.pros-cons-table::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}
.pros-cons-table table {
    width: 100%;
    border-collapse: collapse;
}
.pros-cons-table thead th {
    padding: 16px 22px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-align: left;
}
.pros-cons-table thead th:first-child {
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.22) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: #7ff5c5;
    border-right: 1px solid rgba(140, 100, 255, 0.15);
}
.pros-cons-table thead th:last-child {
    background: linear-gradient(180deg, rgba(255, 92, 138, 0.22) 0%, rgba(255, 92, 138, 0.1) 100%);
    color: #ff9dbb;
}
.pros-cons-table td {
    padding: 13px 22px;
    color: var(--text-2);
    font-size: 15px;
    border-bottom: 1px solid rgba(140, 100, 255, 0.11);
    vertical-align: top;
}
.pros-cons-table td:first-child { border-right: 1px solid rgba(140, 100, 255, 0.15); }
.pros-cons-table tr:last-child td { border-bottom: none; }
.pros-cons-table td:first-child::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    margin-right: 10px;
    font-size: 16px;
}
.pros-cons-table td:last-child:not(:empty)::before {
    content: "✕";
    color: var(--danger);
    font-weight: 700;
    margin-right: 10px;
    font-size: 16px;
}

/* ============ CTA block ============ */
.cta-block {
    margin: 60px 0 40px;
    padding: 56px 44px;
    background:
        radial-gradient(ellipse 60% 80% at 15% 30%,  rgba(255, 0, 189, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 85% 70%,  rgba(0, 126, 255, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(255, 206, 0, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, #160840 0%, #200d5a 50%, #160840 100%);
    border: 1px solid rgba(113, 9, 255, 0.40);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent);
}
.cta-block h2 {
    margin: 0 0 14px;
    color: var(--text-1);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}
.cta-block p {
    color: var(--text-2);
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto 28px;
}

/* ============ Footer ============ */
.footer {
    margin-top: 60px;
    padding: 46px 0 30px;
    background: rgba(10, 5, 36, 0.75);
    border-top: 1px solid rgba(140, 100, 255, 0.22);
    text-align: center;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.55;
}
.footer p {
    color: var(--text-3);
    font-size: 14px;
    margin: 8px 0;
}
.footer .logo img {
    height: 36px;
    margin-bottom: 12px;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin: 20px 0;
}
.footer-menu a {
    color: var(--text-2);
    font-size: 14px;
}
.footer-menu a:hover { color: var(--accent-3); }

/* ============ Responsive ============ */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 30px; }
    .hero-eyebrow, .hero-cta-row { justify-content: center; }
    .hero-visual img { max-width: 240px; margin: 0 auto; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .slot-types, .bonus-cards { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { grid-template-columns: 1fr; text-align: center; padding: 26px; }
    .promo-banner__image img { max-width: 240px; margin: 0 auto; }
    .split-block { grid-template-columns: 1fr; }
    .split-block.reverse .split-image { order: 1; }
    .split-image img { max-width: 240px; }
    .nav { display: none; }
    .nav-onepage { display: none; }
    .section-title { font-size: 24px; }
    .cta-block { padding: 36px 22px; }
    .cta-block h2 { font-size: 22px; }
}

@media (max-width: 560px) {
    .hero-content h1 { font-size: 22px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .payment-methods { grid-template-columns: 1fr; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .data-table th, .data-table td,
    .deposits-table th, .deposits-table td { padding: 9px 12px; font-size: 12px; }
    .header-inner .btn { padding: 10px 18px; font-size: 13px; }
    .btn-ghost { display: none; }
    .logo img { height: 34px; }
    .pros-cons-table td:first-child { border-right: none; border-bottom: 1px solid rgba(140,100,255,0.13); }
}

/* ==========================================================================
   Дополнения для расширенного обзора Champion Slots:
   раздел с турнирами, компактные иконки платёжных систем,
   FAQ-аккордеон и мелкие правки под большой объём текста.
   ========================================================================== */

/* ============ Турниры ============ */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 26px 0 20px;
}

.tournament-card {
    position: relative;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 22px;
    background:
        linear-gradient(160deg, rgba(28, 18, 66, 0.72) 0%, rgba(20, 8, 46, 0.72) 100%);
    border-radius: var(--radius-lg);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease;
}
.tournament-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 0, 189, 0.55) 0%, rgba(113, 9, 255, 0.3) 45%, rgba(0, 171, 255, 0.55) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.tournament-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(closest-side, rgba(255, 0, 189, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.tournament-card:hover { transform: translateY(-4px); }

.tournament-card__image {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tournament-card__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 18px rgba(113, 9, 255, 0.35));
}

.tournament-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tournament-card__prize {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 190, 61, 0.14);
    border: 1px solid rgba(255, 190, 61, 0.4);
    color: var(--accent-gold);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    align-self: flex-start;
}
.tournament-card__title {
    margin: 0;
    color: var(--text-1);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}
.tournament-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    margin-top: 4px;
}
.tournament-card__meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
}
.tournament-card__meta-label {
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 10px;
    font-weight: 600;
}
.tournament-card__meta-value {
    color: var(--text-1);
    font-weight: 600;
}
.tournament-card__note {
    margin: 4px 0 0;
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.5;
}
.tournament-card__note strong { color: var(--accent-3); }

/* ============ Иконки платёжных систем ============ */
.payment-brands {
    margin: 26px 0 10px;
    padding: 20px 22px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    position: relative;
}
.payment-brands::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}
.payment-brands h4 {
    margin: 0 0 14px;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.payment-brands__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.payment-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: rgba(10, 5, 36, 0.6);
    border: 1px solid rgba(140, 100, 255, 0.22);
    border-radius: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    height: 76px;
}
.payment-brand:hover {
    border-color: rgba(190, 150, 255, 0.55);
    transform: translateY(-2px);
}
.payment-brand img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
}

/* ============ Описательные блоки (для провайдеров live/каналов поддержки) ============ */
.described-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}
.described-block {
    padding: 20px 22px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    position: relative;
    padding-left: 22px;
}
.described-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--gradient-accent);
}
.described-block h4 {
    margin: 0 0 8px;
    color: var(--text-1);
    font-size: 17px;
    font-weight: 700;
    padding-left: 12px;
}
.described-block p {
    margin: 0;
    color: var(--text-2);
    font-size: 15px;
    padding-left: 12px;
}

/* ============ FAQ ============ */
.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: var(--card-hover-border); }
.faq-item summary {
    padding: 18px 24px;
    color: var(--text-1);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gradient-btn);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 0, 189, 0.35);
    transition: transform 0.28s ease;
}
.faq-item summary::before {
    content: "+";
    position: absolute;
    right: 27px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    z-index: 1;
    transition: transform 0.28s ease;
    pointer-events: none;
}
.faq-item[open] summary::before { transform: rotate(45deg); }
.faq-item[open] summary { background: rgba(113, 9, 255, 0.1); }
.faq-item p {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--text-2);
    font-size: 15px;
}

/* ============ Responsive для новых блоков ============ */
@media (max-width: 960px) {
    .tournaments-grid { grid-template-columns: 1fr; }
    .tournament-card { grid-template-columns: 120px 1fr; padding: 18px; gap: 14px; }
    .tournament-card__image { width: 120px; height: 120px; }
    .tournament-card__title { font-size: 17px; }
    .payment-brands__list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 560px) {
    .tournament-card { grid-template-columns: 1fr; text-align: center; }
    .tournament-card__image { width: 100%; max-width: 220px; height: auto; margin: 0 auto; }
    .tournament-card__meta { grid-template-columns: 1fr; text-align: left; }
    .tournament-card__prize { align-self: center; }
    .payment-brands__list { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Crash games — компактный вид под размер slot-card ============ */
.crash-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0 26px;
}
.crash-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.crash-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-hover-border);
}
.crash-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    display: block;
}
.crash-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.crash-card:hover .crash-card__image img { transform: scale(1.04); }
.crash-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(10, 5, 36, 0.82);
    border: 1px solid rgba(255, 190, 61, 0.5);
    color: var(--accent-gold);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.crash-card__body { padding: 14px 16px 16px; }
.crash-card__title {
    margin: 0 0 4px;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 700;
}
.crash-card__provider {
    color: var(--text-3);
    font-size: 12px;
    margin: 0;
}

/* Slots grid — 3 колонки под топ-слоты */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0 26px;
}
.slot-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.slot-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-hover-border);
}
.slot-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.slot-card__body { padding: 14px 16px 16px; }
.slot-card__name {
    margin: 0 0 4px;
    color: var(--text-1);
    font-weight: 700;
    font-size: 15px;
}
.slot-card__provider {
    margin: 0;
    color: var(--text-3);
    font-size: 12px;
}

/* Провайдеры-таблица чуть шире */
.providers-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
.providers-table::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}
.providers-table table {
    width: 100%;
    border-collapse: collapse;
}
.providers-table th, .providers-table td {
    padding: 13px 20px;
    text-align: left;
    color: var(--text-2);
    border-bottom: 1px solid rgba(140, 100, 255, 0.13);
    font-size: 14px;
}
.providers-table th {
    background: linear-gradient(180deg, rgba(113, 9, 255, 0.24) 0%, rgba(1, 72, 255, 0.14) 100%);
    color: var(--text-1);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.providers-table tr:last-child td { border-bottom: none; }
.providers-table td:first-child {
    color: var(--accent-3);
    font-weight: 700;
}

/* ============ Responsive для добавленных блоков ============ */
@media (max-width: 960px) {
    .crash-games { grid-template-columns: repeat(2, 1fr); }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .providers-table th, .providers-table td { padding: 10px 12px; font-size: 12px; }
    .payment-brands__list { grid-template-columns: repeat(2, 1fr); }
    .payment-brand { height: 68px; }
}
@media (max-width: 560px) {
    .crash-games { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: 1fr; }
    .payment-brands__list { grid-template-columns: 1fr; }
}

/* ============ Live-казино — 3 карточки в размере слотов ============ */
.live-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0 26px;
}
.live-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.live-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-hover-border);
}
.live-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.live-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.live-card:hover .live-card__image { transform: scale(1.04); }
.live-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(255, 92, 138, 0.92);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.live-card__badge::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.live-card__body { padding: 14px 16px 16px; }
.live-card__name {
    margin: 0 0 4px;
    color: var(--text-1);
    font-weight: 700;
    font-size: 15px;
}
.live-card__provider {
    margin: 0;
    color: var(--text-3);
    font-size: 12px;
}

@media (max-width: 960px) {
    .live-games { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .live-games { grid-template-columns: 1fr; }
}

/* ============ .game-card — точная структура из production-стилей ============ */
/* Соответствует селектору .play-game-frame__content > .game-card > .game-card__image */
.crash-card .game-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
    display: block;
}
.crash-card .game-card__image {
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.crash-card:hover .game-card__image { transform: scale(1.04); }

/* Ensure the crash card image wrapper doesn't add extra chrome around .game-card */
.crash-card .crash-card__image {
    padding: 0;
    background: transparent;
}

/* ============ Hero bonus-badge button — крупный CTA сразу после H1 ============ */
.hero-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 22px;
    padding: 14px 28px;
    background: var(--gradient-btn);
    border-radius: 999px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(255, 0, 189, 0.35), 0 4px 14px rgba(113, 9, 255, 0.3);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-bonus-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 0, 189, 0.45), 0 6px 18px rgba(113, 9, 255, 0.4);
}
.hero-bonus-badge::before {
    content: "🎁";
    font-size: 22px;
}
@media (max-width: 560px) {
    .hero-bonus-badge { font-size: 16px; padding: 11px 20px; }
}

/* ============ Дополнения для многостраничного Champion-сайта ============ */
.section-alt {
    background:
        radial-gradient(ellipse 700px 350px at 100% 50%, rgba(0, 255, 202, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 600px 350px at 0% 50%,   rgba(255, 0, 189, 0.11) 0%, transparent 70%),
        #130730;
}

/* fallbacks that map onto the existing Champion palette */
.btn-gold {
    background: var(--accent-gold, #ffbe3d);
    color: #2b1a02;
    font-weight: 700;
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-2px); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* clickable bonus-card link reset */
a.bonus-card { display: block; transition: transform 0.25s ease, border-color 0.25s ease; }
a.bonus-card:hover { transform: translateY(-4px); }

/* ============ Burger & Mobile Nav ============ */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 60;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-1);
    margin: 5px 0;
    border-radius: 2px;
    transition: .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 5, 36, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 55;
    padding: 90px 24px 40px;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    display: block;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-2);
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { background: rgba(113, 9, 255, 0.15); color: var(--text-1); }
.mobile-menu .mobile-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}
.mobile-menu .mobile-actions .btn { flex: 1; text-align: center; }

@media (max-width: 960px) {
    .burger { display: block; }
    .header-actions { display: none; }
}
@media (min-width: 961px) {
    .mobile-menu { display: none !important; }
}

/* nav active */
.nav a.active { color: var(--text-1); }
.nav a.active::after { width: 100%; }

/* ============ One-page specific: smooth-scroll nav + section anchors ============ */
html { scroll-behavior: smooth; }

.nav-onepage { display: flex; gap: 28px; align-items: center; }
.nav-onepage a {
    color: var(--text-2); font-weight: 500; font-size: 15px;
    position: relative; padding: 6px 0; cursor: pointer;
    text-decoration: none; background: none; border: none;
    font-family: inherit;
    transition: color 0.2s ease;
}
.nav-onepage a:hover { color: var(--text-1); }
.nav-onepage a::after {
    content: ""; position: absolute; left: 50%; bottom: 0;
    transform: translateX(-50%); height: 2px; width: 0;
    background: var(--gradient-accent); transition: width 0.25s ease;
}
.nav-onepage a:hover::after,
.nav-onepage a.active::after { width: 100%; }
.nav-onepage a.active { color: var(--text-1); }

/* Scroll progress */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: var(--gradient-accent); z-index: 200;
    transition: width 0.1s linear;
}

/* Section scroll-mt for sticky header */
.section-anchor { scroll-margin-top: 80px; }

/* Steps ordered list */
/* steps-list override for onepage — uses main styles above */
.steps-list li .step-body { color: var(--text-2); font-size: .95rem; line-height: 1.7; }
.steps-list li .step-body strong { color: var(--text-1); }

/* FAQ accordion */
.faq-list { margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-item summary {
    cursor: pointer; padding: 18px 0;
    font-weight: 600; font-size: 1rem; color: var(--text-1);
    display: flex; justify-content: space-between; align-items: center;
    list-style: none; gap: 12px;
    transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; flex-shrink: 0; font-size: 1.3rem;
    color: var(--accent-1); transition: transform .3s;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent-3); }
.faq-item p { padding-bottom: 16px; color: var(--text-2); font-size: .95rem; line-height: 1.75; margin: 0; }

/* Pros/cons table for one-page */
.proscons-table { width: 100%; border-collapse: collapse; }
.proscons-table th, .proscons-table td {
    padding: 14px 18px; text-align: left;
    border-bottom: 1px solid var(--card-border); font-size: .93rem;
}
.proscons-table th { font-size: .85rem; font-weight: 700; }
.proscons-table th:first-child { color: var(--success); }
.proscons-table th:last-child { color: var(--danger); }
.proscons-table td { color: var(--text-2); }
.proscons-table td::before { margin-right: 6px; }
.proscons-table td:first-child::before { content: '✓'; color: var(--success); }
.proscons-table td:last-child::before { content: '✗'; color: var(--danger); }
.proscons-table tr:last-child td { border-bottom: none; }

/* Welcome pack cards */
.deposit-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.deposit-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: var(--radius-md); padding: 24px 18px; text-align: center;
    transition: border-color .25s, transform .25s;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.deposit-card:hover { border-color: var(--card-hover-border); transform: translateY(-3px); }
.deposit-card .dep-n { font-size: .75rem; color: var(--accent-3); font-weight: 700; margin-bottom: 4px; display: block; }
.deposit-card .dep-pct {
    display: block;
    font-family: inherit; font-weight: 900; font-size: 2.2rem;
    line-height: 1.2;
    padding: 2px 4px;
    background: var(--gradient-accent);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.deposit-card .dep-max { color: var(--text-3); font-size: .85rem; margin-top: 4px; }
.deposit-card .dep-fs { color: var(--accent-4); font-weight: 600; font-size: .85rem; margin-top: 6px; }
@media (max-width: 760px) { .deposit-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .deposit-cards { grid-template-columns: 1fr; } }

/* =============================================================
   COMPREHENSIVE RESPONSIVE — полная адаптация для мобильных
   Три точки разлома: 960px (планшет), 640px (смартфон), 380px (XS)
   ============================================================= */

/* ---- 960px: планшет / скрытие десктопной навигации ---- */
@media (max-width: 960px) {
    /* Контейнер */
    .container { padding: 0 18px; }

    /* Шапка */
    .nav-onepage { display: none; }
    .header-actions { display: none; }
    .burger { display: block; }

    /* Hero */
    .hero { padding: 64px 0 48px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; }
    .hero-visual img { max-width: 240px; margin: 0 auto; }
    .hero-content h1 { font-size: 30px; line-height: 1.2; }
    .hero-cta-row { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Секции */
    .section { padding: 48px 0; }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 17px; }

    /* described-blocks: 2→1 колонка */
    .described-blocks { grid-template-columns: 1fr; }

    /* bonus-cards: 2→1 */
    .bonus-cards { grid-template-columns: 1fr; }

    /* split-block: 2→1 */
    .split-block { grid-template-columns: 1fr; gap: 28px; padding: 20px 0; }
    .split-image { order: -1; }
    .split-image img { max-width: 240px; }

    /* Таблицы: горизонтальный скролл */
    .data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .data-table { min-width: 520px; }
    .data-table th, .data-table td { padding: 11px 14px; font-size: 13px; }

    /* Proscons таблица */
    .data-table-wrap .proscons-table { min-width: 0; }
    .proscons-table { display: block; }
    .proscons-table thead { display: none; }
    .proscons-table tbody { display: block; }
    .proscons-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-bottom: 1px solid var(--card-border);
    }
    .proscons-table td {
        display: block;
        border-bottom: none;
        padding: 10px 14px;
        font-size: .88rem;
    }
    .proscons-table td:first-child {
        border-right: 1px solid var(--card-border);
    }
    .proscons-table td:empty { display: none; }

    /* Deposit cards: 4→2 */
    .deposit-cards { grid-template-columns: repeat(2, 1fr); }

    /* Slots/Crash/Live: 3→2 */
    .slots-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .crash-games { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .live-games  { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* Payment brands */
    .payment-brands__list { grid-template-columns: repeat(3, 1fr); }

    /* CTA block */
    .cta-block { padding: 36px 22px; }
    .cta-block h2 { font-size: 22px; }
    .btn-row { flex-direction: column; align-items: center; gap: 12px; }
    .btn-row .btn { width: 100%; max-width: 320px; text-align: center; }

    /* Footer */
    .footer-menu { flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
    .footer { padding: 36px 0 24px; }
}

/* ---- 640px: смартфон ---- */
@media (max-width: 640px) {
    /* Hero */
    .hero { padding: 52px 0 36px; }
    .hero-content h1 { font-size: 24px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-stat__num { font-size: 22px; }
    .hero-stat__lbl { font-size: 11px; }
    .hero-bonus-badge { font-size: 15px; padding: 10px 18px; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }
    .btn-ghost { display: none; } /* только 1 кнопка в мобильном меню header */

    /* Секции */
    .section { padding: 36px 0; }
    .section-title { font-size: 21px; }
    .section-header { margin-bottom: 18px; }

    /* Описательные блоки — уже 1 колонка, уменьшить падинг */
    .described-block { padding: 16px 18px 16px 18px; }
    .described-block h4 { font-size: 15px; }
    .described-block p { font-size: 14px; }

    /* Бонусные карточки */
    .bonus-card { padding: 22px 18px; }
    .bonus-card h4 { font-size: 16px; }
    .bonus-card p { font-size: 14px; }

    /* Deposit 4→1 */
    .deposit-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .deposit-card { padding: 18px 12px; }
    .deposit-card .dep-pct { font-size: 1.8rem; }

    /* Slots/Crash/Live: 2→1 */
    .slots-grid  { grid-template-columns: 1fr; }
    .crash-games { grid-template-columns: 1fr; }
    .live-games  { grid-template-columns: 1fr; }

    /* Таблицы */
    .data-table th, .data-table td { padding: 9px 12px; font-size: 12px; }

    /* Proscons — полный стек */
    .proscons-table tr { grid-template-columns: 1fr; }
    .proscons-table td:first-child { border-right: none; border-bottom: 1px solid var(--card-border); }

    /* Steps */
    .steps-list li { padding: 14px 16px; gap: 12px; }
    .steps-list li::before { width: 36px; height: 36px; font-size: 13px; border-radius: 10px; }

    /* FAQ */
    .faq-item summary { font-size: .92rem; padding: 15px 0; }
    .faq-item p { font-size: .88rem; }

    /* Split block */
    .split-block { gap: 20px; }
    .split-image img { max-width: 200px; }

    /* Payment brands */
    .payment-brands__list { grid-template-columns: repeat(2, 1fr); }
    .payment-brand { height: 58px; }

    /* Nav-onepage mobile (внутри бургер-меню) */
    .mobile-menu { padding: 84px 20px 36px; }
    .mobile-menu a { font-size: 16px; padding: 12px 16px; }

    /* Footer */
    .footer-menu { gap: 6px 14px; font-size: 13px; }
    .footer p { font-size: 12px; }
    .footer .logo img { height: 30px; }
}

/* ---- 380px: XS (iPhone SE и узкие устройства) ---- */
@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .hero-content h1 { font-size: 20px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .deposit-cards { grid-template-columns: 1fr; }
    .deposit-card .dep-pct { font-size: 1.6rem; }
    .section-title { font-size: 19px; }
    .btn-lg { padding: 12px 22px; font-size: 14px; }
    .hero-bonus-badge { font-size: 13px; padding: 9px 14px; }
    .cta-block h2 { font-size: 19px; }
    .payment-brands__list { grid-template-columns: 1fr 1fr; gap: 8px; }
    .data-table { min-width: 360px; }
}

/* ---- Дополнительные утилиты ---- */
/* Предотвратить горизонтальный скролл на узких экранах */
html, body { max-width: 100%; overflow-x: hidden; }

/* Touch: убрать hover-эффекты на тач-устройствах */
@media (hover: none) {
    .slot-card:hover,
    .crash-card:hover,
    .live-card:hover,
    .bonus-card:hover,
    .deposit-card:hover { transform: none; }
}

/* Landscape телефон: уменьшить отступы hero */
@media (max-width: 812px) and (orientation: landscape) {
    .hero { padding: 40px 0 28px; }
    .hero-visual { display: none; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
