/* ==========================================================================
   Tiger Casino — staveconom.ru
   Полные стили (вторичные, после критических в <head>)
   ========================================================================== */

/* ---------- Доп. шрифты и общие правила ---------- */
:root {
    --bg: #14141B;
    --bg-2: #1B1B24;
    --surface: #22222D;
    --surface-2: #2C2C39;
    --surface-3: #34344A;
    --border: #2F2F3D;
    --border-light: #3A3A4B;
    --text: #FFFFFF;
    --text-muted: #A6A6B5;
    --text-dim: #7C7C8C;
    --primary: #FFA82B;
    --primary-hover: #FFB955;
    --primary-dark: #E8941A;
    --accent-pink: #FF5DA2;
    --accent-purple: #8B5CF6;
    --gradient-bonus: linear-gradient(135deg, #B14CD8 0%, #FF5DA2 100%);
    --gradient-primary: linear-gradient(135deg, #FFA82B 0%, #FF8A1E 100%);
    --success: #22C55E;
    --danger: #EF4444;
    --info: #38BDF8;
    --shadow-card: 0 6px 18px rgba(0,0,0,.35);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --max-w: 1240px;
}

/* Универсально */
html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

* { box-sizing: border-box; }

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover { color: var(--primary-hover); }

/* Контейнер */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Заголовки ---------- */
h1, h2, h3, h4, h5 {
    margin: 0 0 .65em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(1.85rem, 4.6vw, 3rem); }
h2 { font-size: clamp(1.45rem, 3.3vw, 2.2rem); margin-top: 0; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; color: #D6D6E0; }
p strong, b { color: var(--text); font-weight: 600; }

ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li { margin: .35em 0; color: #D6D6E0; }

/* ---------- Header / Шапка ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 20, 27, .88);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo img, .logo svg {
    height: 26px;
    width: auto;
}
.logo .badge {
    background: var(--gradient-primary);
    color: #1A1A20;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .03em;
    padding: 3px 7px;
    border-radius: 6px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.main-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
}
.main-nav a:hover {
    background: var(--surface);
    color: var(--text);
}
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.btn-burger {
    display: none;
    background: transparent;
    border: 1px solid var(--border-light);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.btn-burger svg { width: 22px; height: 22px; }

/* ---------- Хлебные крошки ---------- */
.breadcrumbs {
    font-size: 13px;
    color: var(--text-dim);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs .sep { margin: 0 6px; opacity: .6; }

/* ---------- Кнопки ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #15151D;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 168, 43, .25);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #15151D; }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-xl { padding: 16px 28px; font-size: 16px; border-radius: 12px; }
.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
    box-shadow: none;
}
.btn-ghost:hover { background: var(--surface); color: var(--text); }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 36px 0 56px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 480px;
    background:
        radial-gradient(60% 60% at 20% 20%, rgba(177, 76, 216, .22), transparent 70%),
        radial-gradient(45% 45% at 80% 30%, rgba(255, 168, 43, .18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 168, 43, .12);
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 168, 43, .2);
}
.hero-tag svg { width: 14px; height: 14px; }
.hero h1 {
    margin: 0 0 14px;
    color: var(--text);
}
.hero h1 .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    font-size: 17px;
    color: #C8C8D6;
    margin: 0 0 22px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 540px;
}
.hero-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
}
.hero-stat .num {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.hero-stat .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---------- Bonus card в Hero ---------- */
.bonus-card {
    position: relative;
    background: var(--gradient-bonus);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(177, 76, 216, .25);
}
.bonus-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    pointer-events: none;
}
.bonus-card .gift-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.bonus-card .gift-icon svg { width: 28px; height: 28px; color: #fff; }
.bonus-card h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.bonus-card .amount {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 900;
    line-height: 1;
    margin: 6px 0 4px;
}
.bonus-card .amount span { color: #FFD93D; }
.bonus-card .sub {
    font-size: 14px;
    opacity: .92;
    margin-bottom: 22px;
}
.bonus-card .ribbon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.2);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 18px;
}
.bonus-card .ribbon svg { width: 14px; height: 14px; }
.bonus-card .btn-bonus {
    display: flex;
    background: #fff;
    color: #2E1647;
    font-weight: 800;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.bonus-card .btn-bonus:hover { transform: translateY(-1px); color: #2E1647; }

/* ---------- Секции ---------- */
section {
    padding: 56px 0;
    position: relative;
}
section.tight { padding: 30px 0; }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.section-head .titles { max-width: 760px; }
.section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-head .eyebrow svg { width: 14px; height: 14px; }
.section-head h2 { margin-bottom: 8px; }
.section-head .lead {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* ---------- Карточки 3 преимущества ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-card:hover {
    border-color: rgba(255, 168, 43, .35);
    transform: translateY(-2px);
}
.feature-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 168, 43, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.feature-card .icon-wrap svg { width: 24px; height: 24px; }
.feature-card h3 { margin: 0; font-size: 17px; }
.feature-card p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* ---------- Таблицы ---------- */
.table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 22px 0 24px;
}
.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table-wrap thead th {
    background: var(--surface-2);
    color: var(--text);
    text-align: left;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .03em;
    border-bottom: 1px solid var(--border-light);
}
.table-wrap tbody td {
    padding: 14px 16px;
    color: #D5D5E0;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.table-wrap tbody tr:last-child td { border-bottom: none; }
.table-wrap tbody tr:hover td { background: rgba(255, 168, 43, .04); }
.table-wrap td .ico-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.table-wrap td .ico-row svg { width: 16px; height: 16px; flex-shrink: 0; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-primary { color: var(--primary); }

/* ---------- Цитаты ---------- */
blockquote, .quote {
    background: linear-gradient(135deg, rgba(255, 168, 43, .08), rgba(177, 76, 216, .08));
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    margin: 22px 0;
    padding: 20px 24px;
    color: #E0E0EB;
    font-style: italic;
    position: relative;
}
.quote .quote-author {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
}
.quote .quote-author strong { color: var(--primary); font-weight: 700; }

/* Совет эксперта */
.tip {
    background: rgba(56, 189, 248, .08);
    border: 1px solid rgba(56, 189, 248, .25);
    border-radius: 12px;
    padding: 16px 18px 16px 50px;
    position: relative;
    margin: 18px 0;
    color: #D5E5F0;
    font-size: 14px;
}
.tip::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 16px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338BDF8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 18h6'/><path d='M10 22h4'/><path d='M15.09 14a5 5 0 1 0-6.18 0L10 16h4Z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}
.tip strong { color: #7DD3FC; }

/* Предупреждение */
.warn {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: 12px;
    padding: 16px 18px 16px 50px;
    position: relative;
    margin: 18px 0;
    color: #F2D5D5;
    font-size: 14px;
}
.warn::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 16px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F87171' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0Z'/><line x1='12' y1='9' x2='12' y2='13'/><line x1='12' y1='17' x2='12.01' y2='17'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ---------- Бонусы ---------- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.bonus-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s, transform .2s;
}
.bonus-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.bonus-item .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.bonus-item .icon-wrap svg { width: 22px; height: 22px; }
.bonus-item h3 { margin: 0; font-size: 16px; }
.bonus-item .value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-top: 4px;
}
.bonus-item p { margin: 4px 0 0; font-size: 13px; color: var(--text-muted); }

/* ---------- Игровые карточки ---------- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
    aspect-ratio: 3 / 4;
    display: block;
    text-decoration: none;
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.45); }
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.game-card:hover img { transform: scale(1.04); }
.game-card .meta {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent, rgba(15, 15, 20, .92));
    padding: 28px 12px 12px;
}
.game-card .meta .name {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
}
.game-card .meta .provider {
    color: var(--text-muted);
    font-size: 11px;
    margin-top: 2px;
}
.game-card .badge-rtp {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}
.game-card .badge-hot {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--gradient-primary);
    color: #1A1A20;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* ---------- Mockups ---------- */
.mockup-wrap {
    margin: 30px 0;
}
.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.mockup-grid.reverse { direction: rtl; }
.mockup-grid.reverse > * { direction: ltr; }
.mockup-text h3 { margin-top: 0; }
.mockup-text ul.steps {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    counter-reset: step;
}
.mockup-text ul.steps li {
    position: relative;
    padding: 12px 16px 12px 56px;
    margin-bottom: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    counter-increment: step;
    color: #D5D5E0;
    font-size: 14px;
}
.mockup-text ul.steps li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: #1A1A20;
    font-weight: 800;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.mockup-text ul.steps li strong { color: var(--text); display: block; margin-bottom: 2px; font-size: 15px; }

/* PC mockup */
.pc-mockup {
    position: relative;
    background: linear-gradient(180deg, #2C2C39 0%, #1F1F28 100%);
    border-radius: 14px 14px 6px 6px;
    padding: 30px 12px 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    border: 1px solid var(--border-light);
}
.pc-mockup .traffic {
    position: absolute;
    top: 10px;
    left: 14px;
    display: flex;
    gap: 6px;
}
.pc-mockup .traffic span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3D3D4E;
}
.pc-mockup .traffic span:nth-child(1) { background: #FF5F56; }
.pc-mockup .traffic span:nth-child(2) { background: #FFBD2E; }
.pc-mockup .traffic span:nth-child(3) { background: #27C93F; }
.pc-mockup .url-bar {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #14141B;
    color: var(--text-muted);
    font-size: 11px;
    padding: 3px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-mockup .screen {
    background: #14141B;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
}
.pc-mockup .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.pc-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pc-stand .neck {
    width: 26%;
    height: 14px;
    background: linear-gradient(180deg, #2C2C39, #1F1F28);
    border-radius: 0 0 12px 12px;
}
.pc-stand .base {
    width: 50%;
    height: 6px;
    background: #2C2C39;
    margin-top: 2px;
    border-radius: 4px;
}
.mockup-cta {
    position: absolute;
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
    z-index: 2;
}
.mockup-cta .btn {
    box-shadow: 0 12px 32px rgba(255, 168, 43, .55), 0 0 0 6px rgba(255, 168, 43, .15);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(255, 168, 43, .55), 0 0 0 6px rgba(255, 168, 43, .15); }
    50% { box-shadow: 0 12px 32px rgba(255, 168, 43, .55), 0 0 0 12px rgba(255, 168, 43, 0); }
}

/* Phone mockup */
.phone-mockup {
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 9 / 18;
    background: #0A0A12;
    border: 8px solid #2A2A35;
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5), inset 0 0 0 1px #3A3A4B;
    padding: 0;
    overflow: hidden;
}
.phone-mockup::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 18px;
    background: #15151D;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}
.phone-mockup .screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}
.phone-mockup .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.phone-mockup .mockup-cta {
    bottom: 14%;
}

/* CSS-only mobile UI inside phone mockup */
.phone-ui {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #1B1B24 0%, #14141B 100%);
    color: #fff;
    padding: 30px 12px 14px;
    font-size: 12px;
    overflow: hidden;
}
.phone-ui .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.phone-ui .topbar .brand {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .04em;
    color: #fff;
}
.phone-ui .topbar .pill-bal {
    background: #22222D;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 10px;
    color: var(--primary);
}
.phone-ui .promo {
    background: linear-gradient(135deg, #B14CD8, #FF5DA2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
}
.phone-ui .promo .lbl { font-size: 9px; text-transform: uppercase; letter-spacing: .05em; opacity: .9; }
.phone-ui .promo .val { font-size: 16px; font-weight: 900; line-height: 1; margin-top: 2px; }
.phone-ui .promo .sub { font-size: 9px; opacity: .85; margin-top: 4px; }
.phone-ui .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
}
.phone-ui .row .game {
    background: #22222D;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}
.phone-ui .tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}
.phone-ui .tab {
    flex: 1;
    background: #22222D;
    color: #A6A6B5;
    text-align: center;
    padding: 6px 4px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
}
.phone-ui .tab.active { background: var(--primary); color: #15151D; }
.phone-ui .nav-bottom {
    margin-top: auto;
    background: #22222D;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.phone-ui .nav-bottom .nav-i {
    width: 16px;
    height: 16px;
    color: #A6A6B5;
}
.phone-ui .nav-bottom .nav-i.active { color: var(--primary); }

/* Form mockup (для регистрации/входа) */
.form-mockup {
    background: linear-gradient(180deg, #1F1F28, #16161D);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
}
.form-mockup .fm-tabs {
    display: flex;
    background: var(--bg);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}
.form-mockup .fm-tabs .fm-tab {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: default;
}
.form-mockup .fm-tabs .fm-tab.active {
    background: var(--primary);
    color: #15151D;
}
.form-mockup .fm-field {
    margin-bottom: 12px;
}
.form-mockup .fm-field label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
}
.form-mockup .fm-input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-mockup .fm-input svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
.form-mockup .fm-input .ph { color: var(--text-dim); }
.form-mockup .fm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.form-mockup .fm-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 16px;
    font-size: 12px;
    color: var(--text-muted);
}
.form-mockup .fm-checkbox .box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-mockup .fm-checkbox .box svg { width: 12px; height: 12px; color: #15151D; }
.form-mockup .fm-cta {
    background: var(--gradient-primary);
    color: #15151D;
    font-weight: 800;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 22px rgba(255,168,43,.25);
    transition: transform .15s ease;
}
.form-mockup .fm-cta:hover { transform: translateY(-1px); color: #15151D; }
.form-mockup .fm-or {
    text-align: center;
    color: var(--text-dim);
    font-size: 11px;
    margin: 14px 0;
    position: relative;
}
.form-mockup .fm-or::before, .form-mockup .fm-or::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--border);
}
.form-mockup .fm-or::before { left: 0; }
.form-mockup .fm-or::after { right: 0; }
.form-mockup .fm-social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.form-mockup .fm-social .soc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.form-mockup .fm-social .soc svg { width: 18px; height: 18px; }

/* ---------- Платежные методы ---------- */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.payment-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100px;
    gap: 8px;
    transition: border-color .2s, transform .2s;
}
.payment-item:hover { border-color: var(--primary); transform: translateY(-2px); }
.payment-item .pay-name {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
}
.payment-item .pay-icon {
    width: 38px;
    height: 38px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-item .pay-icon svg { width: 100%; height: 100%; }

/* ---------- Провайдеры ---------- */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.provider-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    transition: border-color .2s, color .2s;
}
.provider-item:hover { border-color: var(--primary); color: var(--text); }
.provider-item small {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
    font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(255, 168, 43, .35); }
.faq-item summary {
    padding: 18px 22px 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform .2s, background .2s;
}
.faq-item summary .faq-icon svg { width: 16px; height: 16px; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); background: rgba(255, 168, 43, .15); }
.faq-item .faq-body {
    padding: 0 22px 20px;
    color: #C8C8D6;
    font-size: 14px;
    line-height: 1.7;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Преимущества ---------- */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.adv-item .ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(34, 197, 94, .15);
    color: var(--success);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.adv-item .ico svg { width: 20px; height: 20px; }
.adv-item h4 { margin: 0 0 4px; font-size: 15px; color: var(--text); }
.adv-item p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* ---------- App / Скачать ---------- */
.app-section {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    padding: 60px 0;
}
.app-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
}
.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 24px 0;
}
.app-features .feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.app-features .feat .ico {
    color: var(--primary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.app-features .feat span { font-size: 14px; color: var(--text); }
.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1F1F28;
    border: 1px solid var(--border-light);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.btn-store:hover { background: #2A2A35; transform: translateY(-1px); color: #fff; }
.btn-store .store-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #fff;
}
.btn-store .store-text small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1;
}
.btn-store .store-text strong {
    font-size: 16px;
    line-height: 1.2;
    margin-top: 2px;
    display: block;
}

/* ---------- Поддержка ---------- */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.support-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}
.support-card .ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 168, 43, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.support-card .ico svg { width: 28px; height: 28px; }
.support-card h4 { margin: 0 0 6px; font-size: 16px; }
.support-card p { font-size: 14px; color: var(--text-muted); margin: 0 0 4px; }
.support-card .pill {
    display: inline-block;
    background: rgba(34, 197, 94, .12);
    color: var(--success);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* ---------- CTA блок (sticky / большой) ---------- */
.cta-banner {
    background: linear-gradient(135deg, #B14CD8 0%, #FF5DA2 60%, #FFA82B 100%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    color: #fff;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 80% at 80% 0%, rgba(255,255,255,.15), transparent 70%),
        radial-gradient(50% 80% at 0% 100%, rgba(0,0,0,.18), transparent 70%);
    pointer-events: none;
}
.cta-banner h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: clamp(20px, 3vw, 26px);
}
.cta-banner p { color: rgba(255,255,255,.92); margin: 0 0 20px; }
.cta-banner .btn {
    background: #fff;
    color: #2E1647;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
}
.cta-banner .btn:hover { color: #2E1647; background: #FFFAF0; }

/* ---------- Калькулятор бонуса (уникальность) ---------- */
.bonus-calc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.bonus-calc label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}
.bonus-calc input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--surface-2);
    border-radius: 6px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 14px 0;
}
.bonus-calc input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.bonus-calc input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}
.bonus-calc .calc-out {
    background: var(--surface-2);
    border-radius: 12px;
    padding: 18px;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}
.bonus-calc .calc-out .out-cell {
    border-right: 1px solid var(--border);
    padding-right: 12px;
}
.bonus-calc .calc-out .out-cell:last-child { border-right: none; padding-right: 0; }
.bonus-calc .calc-out .out-cell .num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}
.bonus-calc .calc-out .out-cell .lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 4px;
}
.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.calc-row .calc-val {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0E0E15;
    padding: 50px 0 24px;
    border-top: 1px solid var(--border);
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--primary); }
.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-col .footer-logo img { height: 24px; }
.footer-col p { color: var(--text-muted); font-size: 13px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-dim);
}
.footer-bottom .resp {
    display: flex;
    align-items: center;
    gap: 10px;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--danger);
    color: var(--danger);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}
.disclaimer {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 18px;
}

/* ---------- Sticky CTA для мобильной версии ---------- */
.sticky-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 95;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    align-items: center;
    gap: 10px;
}
.sticky-cta .info { flex: 1; min-width: 0; }
.sticky-cta .info b { color: #fff; display: block; font-size: 13px; }
.sticky-cta .info small { color: var(--text-muted); font-size: 11px; }

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .feature-grid, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(4, 1fr); }
    .payment-grid, .providers-grid { grid-template-columns: repeat(4, 1fr); }
    .support-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mockup-grid, .app-grid { grid-template-columns: 1fr; gap: 24px; }
    .mockup-grid.reverse { direction: ltr; }
    .main-nav { display: none; }
    .btn-burger { display: inline-flex; }
    .header-cta .btn-ghost { display: none; }
    .advantages-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    section { padding: 40px 0; }
    .container { padding: 0 16px; }
    .feature-grid, .bonus-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .payment-grid, .providers-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .bonus-calc .calc-out { grid-template-columns: 1fr; }
    .bonus-calc .calc-out .out-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 8px 0; }
    .bonus-calc .calc-out .out-cell:last-child { border-bottom: none; }
    .pc-mockup { padding: 24px 8px 8px; }
    .pc-mockup .url-bar { max-width: 60%; font-size: 10px; }
    .sticky-cta { display: flex; }
    .hero { padding-bottom: 30px; }
    body { padding-bottom: 78px; }
    .table-wrap { overflow-x: auto; }
    .table-wrap table { min-width: 480px; }
    .download-buttons { flex-direction: column; }
    .btn-store { width: 100%; justify-content: center; }
    .header-inner { height: 56px; }
    .logo img { height: 22px; }
}

/* Мобильное меню (overlay) */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 27, .96);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    flex-direction: column;
    padding: 70px 24px 24px;
    overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu nav a {
    display: block;
    padding: 14px 16px;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border-bottom: 1px solid var(--border);
}
.mobile-menu nav a:hover { background: var(--surface); color: var(--primary); }
.mobile-menu .btn { margin-top: 18px; }

/* Мелкие утилиты */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.no-print { /* */ }
.sup-ref { color: var(--primary); font-size: 11px; vertical-align: super; }
.sup-note { font-size: 12px; color: var(--text-muted); padding-left: 8px; border-left: 2px solid var(--border-light); margin-top: 4px; }

/* footnotes */
.footnotes {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}
.footnotes ol { padding-left: 24px; }
.footnotes li { font-size: 12px; margin-bottom: 6px; }

/* highlight inside text */
mark.kw {
    background: rgba(255, 168, 43, .15);
    color: var(--primary);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* prevent layout shift for mockups by fixed aspect */
.mockup-img-stub {
    background: linear-gradient(135deg, #1A1A22, #2A2A36);
    width: 100%;
    height: 100%;
}
