
/* ==============================================
   ⚡ AURORA GAMING PLATFORM v6.0
   Premium Neon Cyberpunk Design System
   ============================================== */

/* Дизайн-токены - Премиум система */
:root {
    /* Поверхности (казино-тематика) */
    --surface-void: #0a1f14;
    --surface-deep: #4fd5ad;
    --surface-raised: #c9dc05;
    --surface-elevated: rgba(201, 220, 5, 0.95);
    --surface-overlay: rgba(79, 213, 173, 0.92);
    
    /* Бренд */
    --brand-primary: #8e7e29;
    /* читаемый текст поверх акцентной заливки */
    --on-accent: #ffffff;
    --brand-primary-dark: #5c511a;
    --brand-primary-light: #dcc33f;
    --brand-muted: #5c511a;
    --brand-vivid: #d5bd3d;
    --brand-glow: #b8a335;
    --brand-secondary: hsl(95, 80%, 55%);
    
    /* Контент */
    --content-main: #ffffff;
    --content-high: rgba(255, 255, 255, 0.95);
    --content-dim: rgba(255, 255, 255, 0.75);
    --content-muted: rgba(255, 255, 255, 0.5);
    --content-subtle: rgba(255, 255, 255, 0.25);
    
    /* RGB */
    --brand-rgb: 142, 126, 41;
    --surface-rgb: 79, 213, 173;
    
    /* Статусы (казино-тематика) */
    --success: #00C853;
    --success-glow: rgba(0, 200, 83, 0.5);
    --warning: #FFA500;
    --warning-glow: rgba(255, 165, 0, 0.5);
    --error: #DC143C;
    --error-glow: rgba(220, 20, 60, 0.5);
    --gold: #8e7e29;
    --gold-dark: #5c511a;
    --gold-light: #dcc33f;
    --gold-glow: rgba(142, 126, 41, 0.6);
    
    /* Градиенты (казино-тематика) */
    --grad-surface: linear-gradient(165deg, var(--surface-void) 0%, var(--surface-deep) 30%, var(--surface-raised) 100%);
    --grad-brand: linear-gradient(135deg, #8e7e29 0%, #5c511a 100%);
    --grad-brand-radial: radial-gradient(circle at 30% 30%, #8e7e29, #5c511a, #8e7e29);
    --grad-shine: linear-gradient(45deg, #8e7e29 0%, #5c511a 25%, #8e7e29 50%, #5c511a 75%, #8e7e29 100%);
    --grad-aurora: conic-gradient(from 180deg at 50% 50%, #8e7e29 0deg, #FFA500 120deg, #8e7e29 240deg, #8e7e29 360deg);
    --grad-mesh: radial-gradient(at 20% 80%, rgba(var(--brand-rgb), 0.18) 0%, transparent 50%), 
                 radial-gradient(at 80% 20%, rgba(var(--brand-rgb), 0.15) 0%, transparent 50%),
                 radial-gradient(at 50% 50%, rgba(var(--brand-rgb), 0.1) 0%, transparent 60%);
    --grad-cta: linear-gradient(135deg, #8e7e29 0%, #FFA500 50%, #8e7e29 100%);
    --grad-gold: linear-gradient(135deg, #8e7e29 0%, #dcc33f 50%, #5c511a 100%);
    
    /* Glass (казино-тематика) */
    --glass-bg: rgba(var(--brand-rgb), 0.05);
    --glass-bg-hover: rgba(var(--brand-rgb), 0.1);
    --glass-bg-active: rgba(var(--brand-rgb), 0.15);
    --glass-edge: rgba(var(--brand-rgb), 0.2);
    --glass-edge-active: rgba(var(--brand-rgb), 0.6);
    --glass-blur: 20px;
    --glass-blur-strong: 32px;
    
    /* Тени и свечение */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.45);
    --shadow-xl: 0 24px 70px rgba(0, 0, 0, 0.55);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    --glow-sm: 0 0 20px rgba(var(--brand-rgb), 0.35);
    --glow-md: 0 0 40px rgba(var(--brand-rgb), 0.5);
    --glow-lg: 0 0 60px rgba(var(--brand-rgb), 0.65);
    --glow-xl: 0 0 100px rgba(var(--brand-rgb), 0.5);
    --glow-text: 0 0 30px rgba(var(--brand-rgb), 0.8);
    
    /* Пространство */
    --space-3xs: 4px;
    --space-2xs: 8px;
    --space-xs: 12px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;
    
    /* Скругления */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Шрифты */
    --font-display: 'Unbounded', 'Manrope', system-ui, sans-serif;
    --font-body: 'Outfit', 'Source Sans 3', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Анимации */
    --ease-out: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Z-индексы */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-toast: 600;
    --z-max: 9999;
}


/* ==============================================
   RESET & BASE
   ============================================== */

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

/* Браузер красит <button> своим цветом (ButtonText — чёрный), и кнопка
   без явного правила становилась невидимой на тёмном фоне: так пропадали
   заголовки аккордеона «Слоты и игры», «Бонусы и акции» и подобные.
   Наследование цвета и шрифта от родителя — обычный сброс для форм. */
button, input, select, textarea {
    color: inherit;
    font: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--surface-deep) 0%, var(--surface-raised) 50%, #0f3520 100%);
    color: var(--content-main);
    line-height: 1.75;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(var(--brand-rgb), 0.4);
    color: var(--content-high);
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--surface-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #FFA500 100%);
    border-radius: var(--radius-full);
    border: 3px solid var(--surface-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFA500 0%, var(--brand-primary) 100%);
}

/* Links */
a {
    /* --brand-ink, а не --brand-primary: сам акцент подобран как заливка
       кнопки, и ссылки этим цветом давали около 3:1 на фоне страницы.
       --brand-ink — тот же тон, но с гарантированным контрастом к фону. */
    color: var(--brand-ink, var(--brand-primary));
    text-decoration: none;
    transition: var(--ease-out);
}

a:hover {
    color: var(--brand-vivid);
    text-shadow: var(--glow-text);
}

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

/* Container */
.i25121876 {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .i25121876 {
        padding: 0 var(--space-md);
    }
}

/* ==============================================
   АТМОСФЕРНЫЕ ЭФФЕКТЫ
   ============================================== */

.r33778667 {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.r33778667::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: 0.9;
}

.r33778667::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-aurora);
    opacity: 0.05;
    filter: blur(100px);
    animation: aurora-shift 30s ease-in-out infinite;
}

@keyframes aurora-shift {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.05; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.08; }
}

.m69866550 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orb-float 25s ease-in-out infinite;
}

.y52173984 {
    width: 600px;
    height: 600px;
    background: conic-gradient(from 45deg, var(--brand-primary), var(--brand-vivid), var(--brand-secondary), var(--brand-primary));
    top: -200px;
    right: -100px;
}

.c92277460 {
    width: 500px;
    height: 500px;
    background: conic-gradient(from 180deg, #5c511a, var(--brand-primary), var(--brand-secondary), #5c511a);
    bottom: -150px;
    left: -150px;
    animation-delay: -12s;
}

.q54570514 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--brand-vivid) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-pulse 15s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(40px, -40px) rotate(90deg) scale(1.05); }
    50% { transform: translate(-30px, 30px) rotate(180deg) scale(0.95); }
    75% { transform: translate(-40px, -30px) rotate(270deg) scale(1.03); }
}

@keyframes orb-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.4); }
}

.b81694521 {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(var(--brand-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--brand-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    animation: grid-pulse 20s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ==============================================
   HEADER - Premium Design
   ============================================== */

/* ===== APPLE-STYLE HEADER ===== */
.r59513029 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.r59513029::before,
.r59513029::after {
    display: none;
}

.r59513029.k61601436 {
    background: rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

.g69202968 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 24px;
    transition: padding 0.35s ease;
}

.r59513029.k61601436 .g69202968 {
    padding: 4px 24px;
    justify-content: center;
}

.l51399367 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    transition: opacity 0.35s ease, max-width 0.35s ease, margin 0.35s ease;
    overflow: hidden;
    max-width: 200px;
}

.r59513029.k61601436 .l51399367 {
    opacity: 0;
    max-width: 0;
    margin: 0;
    pointer-events: none;
}

.u54888610 {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--ease-out);
    filter: drop-shadow(0 0 10px rgba(var(--brand-rgb), 0.3));
}

.u54888610:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px rgba(var(--brand-rgb), 0.6));
}

/* Navigation */
/* ===== APPLE-STYLE NAVIGATION - 12 КНОПОК ===== */
.e58916614 {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.x72870525 {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.r59513029.k61601436 .x72870525 {
    flex-wrap: nowrap;
}

.x72870525 li {
    flex-shrink: 0;
}

.c35111400 {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    color: #f5f5f7;
    font-size: 11px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    opacity: 0.8;
    border-radius: 6px;
}

.c35111400:hover {
    opacity: 1;
    color: var(--brand-primary);
    background: rgba(var(--brand-rgb), 0.08);
}

.c35111400.k55615204 {
    opacity: 1;
    color: var(--brand-primary);
}

.r59513029.k61601436 .c35111400 {
    padding: 5px 8px;
    font-size: 11px;
}

.k57149338 {
    font-size: 12px;
    flex-shrink: 0;
}

/* Header Actions */
.s82098974 {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    transition: opacity 0.35s ease, max-width 0.35s ease, margin 0.35s ease;
    overflow: hidden;
    max-width: 300px;
}

.r59513029.k61601436 .s82098974 {
    opacity: 0;
    max-width: 0;
    margin: 0;
    pointer-events: none;
}

/* Mobile Menu */
.z14131313 {
    display: none;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    transition: var(--ease-out);
}

.z14131313:hover {
    background: var(--glass-bg-hover);
    border-color: var(--brand-primary);
}

.w97218912 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background: var(--content-main);
    transition: var(--ease-out);
}

.w97218912::before,
.w97218912::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--content-main);
    transition: var(--ease-out);
}

.w97218912::before { top: -8px; }
.w97218912::after { bottom: -8px; }

.z14131313.k55615204 .w97218912 {
    background: transparent;
}

.z14131313.k55615204 .w97218912::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--brand-primary);
}

.z14131313.k55615204 .w97218912::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: var(--brand-primary);
}

@media (max-width: 1400px) {
    .c35111400 {
        padding: 5px 8px;
        font-size: 11px;
    }
    .k57149338 {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .c35111400 {
        padding: 5px 7px;
        font-size: 10px;
        gap: 3px;
    }
    .k57149338 {
        font-size: 11px;
    }
}

/* Двенадцать пунктов меню + логотип + две кнопки не помещаются ниже 1200px
   (на 1150 зазор между логотипом и меню оставался 16px и всё налезало),
   поэтому до этой ширины показываем компактную шапку с бургером. */
@media (max-width: 1200px) {
    .e58916614 { display: none; }
    .z14131313 { display: flex; }
    .s82098974 { display: none; }
}

/* Mobile Navigation */
.k79860752 {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--surface-rgb), 0.98);
    backdrop-filter: blur(var(--glass-blur-strong));
    z-index: var(--z-fixed);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transform: translateX(100%);
    opacity: 0;
    transition: var(--ease-out);
}

.k79860752.k55615204 {
    transform: translateX(0);
    opacity: 1;
}

.v73852669 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    color: var(--content-main);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    transition: var(--ease-out);
}

.v73852669:hover,
.v73852669.k55615204 {
    background: var(--grad-brand);
    border-color: var(--brand-primary);
    box-shadow: var(--glow-md);
    color: var(--on-accent);
}

.o51819442 {
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-edge);
}

/* ==============================================
   BUTTONS - Premium CTA
   ============================================== */

.b24711501 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.b24711501::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transition: var(--ease-out);
}

.b24711501::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.5s;
}

.b24711501:hover::before {
    opacity: 1;
}

.b24711501:hover::after {
    left: 100%;
}

.g57193990 {
    background: var(--grad-brand);
    color: var(--on-accent);
    box-shadow: var(--glow-md), var(--shadow-inset);
    border: 1px solid rgba(255,255,255,0.15);
}

.g57193990:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--glow-lg), var(--shadow-lg);
}

.g57193990:active {
    transform: translateY(-2px) scale(0.98);
}

.f50058063 {
    background: var(--glass-bg);
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    backdrop-filter: blur(10px);
}

.f50058063:hover {
    background: var(--brand-primary);
    color: var(--surface-deep);
    transform: translateY(-4px);
    box-shadow: var(--glow-md);
}

.l59258799 {
    background: var(--grad-cta);
    color: var(--surface-deep);
    font-size: 16px;
    padding: var(--space-md) var(--space-xl);
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: var(--glow-md), 0 0 30px var(--success-glow); }
    50% { box-shadow: var(--glow-lg), 0 0 50px var(--success-glow); }
}

.g60798858 {
    padding: var(--space-md) var(--space-2xl);
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.y92687154 {
    width: 100%;
}

.u34655102 {
    display: inline-block;
    margin-left: 0.4rem;
    background: var(--grad-gold);
    color: var(--surface-deep);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* ==============================================
   MAIN CONTENT
   ============================================== */

.k63214118 {
    padding-top: 72px; /* Apple-style compact header */
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
}

.n58808447 {
    animation: content-reveal 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    position: relative;
    padding: var(--space-xl) 0;
}

.n58808447::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 1px;
    background: linear-gradient(160deg, rgba(var(--brand-rgb), 0.25) 0%, transparent 40%, rgba(var(--brand-rgb), 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes content-reveal {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.h18920685 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    padding: var(--space-lg) var(--space-md);
    background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.06) 0%, transparent 70%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(var(--brand-rgb), 0.12);
}

.h18920685::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    opacity: 0.8;
}

.o10506202 {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    position: relative;
}

.o10506202:not(.a41342116) {
    color: var(--content-high);
}

.a41342116 {
    background: var(--grad-shine);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(var(--brand-rgb), 0.4));
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==============================================
   HERO SECTION - MODERN GAMING STYLE
   ============================================== */

/* Hero — ценность бренда (уникальная структура) */
.h86376287,
.h79212589 {
    margin: 28px 0;
    padding: 0;
    background: linear-gradient(160deg, rgba(15, 38, 28, 0.98) 0%, rgba(8, 26, 18, 0.99) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(var(--brand-rgb), 0.22);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.h86376287::before,
.h79212589::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 25%, var(--brand-primary-light) 50%, var(--brand-primary) 75%, transparent 100%);
    opacity: 0.9;
}

.h86376287::after,
.h79212589::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.y17787560,
.k66888948 {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 44px;
    align-items: center;
    padding: 44px 48px;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .y17787560,
    .k66888948 {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 4vw, 1.75rem);
        padding: clamp(1rem, 4vw, 1.75rem) clamp(0.6rem, 2.5vw, 1.25rem);
    }
}

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

.t27185749,
.q19984952 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--brand-rgb), 0.12);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-primary);
    width: fit-content;
    border: 1px solid rgba(var(--brand-rgb), 0.25);
    letter-spacing: 0.02em;
}

.o93893080 {
    font-size: 14px;
    opacity: 0.95;
}

.p55639853 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary) 50%, var(--brand-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    text-shadow: 0 0 40px rgba(var(--brand-rgb), 0.3);
    animation: heroTitleGlow 4s ease-in-out infinite;
}

@keyframes heroTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(var(--brand-rgb), 0.3)); }
    50% { filter: drop-shadow(0 0 35px rgba(var(--brand-rgb), 0.5)); }
}

.b23542291 {
    font-size: 18px;
    color: var(--content-dim);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Features List - важно для ботов */
.x63541943 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.x63541943 li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1), rgba(0, 0, 0, 0.3));
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--content-main);
    border: 1px solid rgba(var(--brand-rgb), 0.2);
    transition: all 0.3s ease;
}

.x63541943 li:hover {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.2), rgba(0, 0, 0, 0.4));
    border-color: rgba(var(--brand-rgb), 0.4);
    transform: translateX(5px);
}

.q90875682 {
    font-size: 18px;
}

/* Modern Gaming Buttons */
.y71359734 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.n71168227 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.n71168227::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.n71168227:hover::before {
    width: 300px;
    height: 300px;
}

.n51953135 {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary));
    color: #0d2818;
    box-shadow: 0 8px 25px rgba(var(--brand-rgb), 0.3);
}

.n51953135:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(var(--brand-rgb), 0.5);
}

.z93615871 {
    background: rgba(var(--brand-rgb), 0.15);
    color: var(--brand-primary);
    border: 2px solid rgba(var(--brand-rgb), 0.4);
}

.z93615871:hover {
    background: rgba(var(--brand-rgb), 0.25);
    border-color: rgba(var(--brand-rgb), 0.6);
    transform: translateY(-3px);
}

/* Quick Links - SEO важно */
.t10846731 {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    padding: clamp(0.85rem, 3.5vw, 1.75rem);
    border: 1px solid var(--glass-edge);
    backdrop-filter: blur(var(--ds-blur, 12px));
}

/* ==============================================
   HERO VARIANTS (главная)
   ============================================== */
.h86376287.i74020320 .y17787560 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.h86376287.i74020320 .t10846731 { order: -1; }

.h86376287.q96939416 .y17787560 { grid-template-columns: 1.2fr 0.8fr; }
.h86376287.q96939416 .c51458622 {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.h86376287.x64976387 .b23542291 { display: none; }
.h86376287.x64976387 .x63541943 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.h86376287.x64976387 .y71359734 { flex-wrap: wrap; }

.t66225273 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-ink, var(--brand-primary));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.9rem 0;
}

.g48288046 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 7.5rem), 1fr));
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .g48288046 {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 7.5rem), 1fr));
    }
}

.s98042776 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
        'ql-icon ql-text'
        'ql-icon ql-meta';
    align-items: center;
    column-gap: 0.6rem;
    padding: 0.7rem 0.75rem;
    background: var(--surface-raised);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: border-color .22s ease, transform .22s ease;
    border: 1px solid var(--glass-edge);
    position: relative;
    overflow: hidden;
}

.s98042776::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.25), transparent);
    transition: left 0.5s ease;
}

.s98042776:hover::before {
    left: 100%;
}

.s98042776:hover {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.18), rgba(0, 0, 0, 0.55));
    border-color: rgba(var(--brand-rgb), 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.25), 0 0 0 1px rgba(var(--brand-rgb), 0.15);
}

.e24416060 {
    grid-area: ql-icon;
    font-size: 1.35rem;
    line-height: 1;
}

@keyframes qlIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.p15524223 {
    grid-area: ql-text;
    align-self: end;
    min-width: 0;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--content-main);
}

.t59923595 {
    grid-area: ql-meta;
    align-self: start;
    min-width: 0;
    margin-top: 0.1rem;
    font-size: 0.72rem;
    line-height: 1.3;
    color: var(--content-muted);
    font-weight: 500;
}

/* Legacy Hero (для совместимости) */
.s21976412 {
    margin-top: var(--space-xl);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
}

.s21976412::before {
    display: none;
}

.s21976412::after {
    display: none;
}

.k45803046 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .k45803046 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .u71698314 {
        order: -1;
    }
    
    .s21976412 {
        padding: var(--space-xl);
    }
}

.q19984952 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #000;
    padding: var(--space-2xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.q85806938 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--content-high);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.w65648246 {
    font-size: 18px;
    color: var(--content-dim);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

.n38805929 {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 968px) {
    .n38805929 {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.v42927311 {
    text-align: center;
    position: relative;
}

.v42927311:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(-1 * var(--space-xl) / 2);
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--glass-edge), transparent);
}

.r74677311 {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.s34386292 {
    font-size: 13px;
    color: var(--content-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.y20486276 {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .y20486276 {
        justify-content: center;
    }
}

.u71698314 {
    position: relative;
}

.j35913783 {
    width: 100%;
    max-width: 580px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glow-lg);
    border: 1px solid var(--glass-edge);
}

/* ==============================================
   GLASS CARDS
   ============================================== */

.x31303209 {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), var(--shadow-inset);
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
}

.x31303209::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.5), transparent);
}

.x31303209:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-edge-active);
    box-shadow: var(--shadow-lg), var(--glow-md);
    transform: translateY(-6px);
}

.x31303209:hover::before {
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

/* CTA / Action блоки — другая структура */
.m64500534,
.y38122428 {
    text-align: center;
    padding: var(--space-2xl) var(--space-3xl);
    margin: var(--space-2xl) 0;
    background: linear-gradient(160deg, rgba(var(--brand-rgb), 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
    border: 1px solid rgba(var(--brand-rgb), 0.28);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

/* Action block (CTA in article) variants */
.m64500534.i74020320 { text-align: left; }
.m64500534.i74020320 .y20486276 { justify-content: flex-start !important; }
.m64500534.q96939416 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.12) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(var(--brand-rgb), 0.22);
}
.m64500534.x64976387 {
    background: transparent;
    border-style: dashed;
}
.m64500534.x64976387::before { display: none; }

.m64500534::before,
.y38122428::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-dark));
    opacity: 0.9;
}

.r33494765,
.f80874651 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.z88211919,
.d24577609 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--content-high);
}

.r53061259,
.f56234981 {
    font-size: 1.1rem;
    color: var(--content-dim);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.k28395048,
.p66974015 {
    font-size: 0.9rem;
    color: var(--content-dim);
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

/* ==============================================
   SPOT CTA BLOCK (призыв после hero / в потоке)
   ============================================== */

.g46004644 {
    margin: var(--space-2xl) 0;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1) 0%, rgba(0, 0, 0, 0.45) 50%);
    border: 1px solid rgba(var(--brand-rgb), 0.28);
    position: relative;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.g46004644::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-dark));
    opacity: 0.95;
}

.g60401014 {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) calc(var(--space-lg) + 5px);
}

.s80905002 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-primary);
    opacity: 0.95;
    text-shadow: 0 0 40px rgba(var(--brand-rgb), 0.4);
    flex-shrink: 0;
}

.c19379700 {
    flex: 1 1 280px;
}

.u93629804 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--content-high);
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.l18979061 {
    font-size: 0.95rem;
    color: var(--content-dim);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.5;
}

.g46004644 .b24711501 {
    font-weight: 600;
}

/* Spot CTA variants */
.g46004644.i74020320 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.14) 0%, rgba(0, 0, 0, 0.55) 60%);
}
.g46004644.i74020320 .s80905002 { font-size: 3rem; opacity: 0.9; }
.g46004644.q96939416 { text-align: center; }
.g46004644.q96939416 .g60401014 { justify-content: center; }
.g46004644.q96939416::before { display: none; }
.g46004644.x64976387 {
    border-style: dashed;
    background: rgba(0, 0, 0, 0.32);
}
.g46004644.x64976387 .l18979061 { font-size: 0.9rem; }

/* ==============================================
   ARTICLE CONTENT
   ============================================== */

.w50825980 {
    font-size: 17px;
    line-height: 1.85;
    padding: var(--space-lg) 0;
    margin: var(--space-md) 0;
    border-top: 1px solid rgba(var(--brand-rgb), 0.1);
}

.w50825980 h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    margin: var(--space-2xl) 0 var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--glass-edge);
    position: relative;
    color: var(--content-high);
}

.w50825980 h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 150px;
    height: 3px;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
}

.w50825980 h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 600;
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--brand-primary);
    text-shadow: var(--glow-text);
}

.w50825980 p {
    margin-bottom: var(--space-lg);
    color: var(--content-dim);
}

.w50825980 ul,
.w50825980 ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.w50825980 li {
    margin-bottom: var(--space-sm);
    color: var(--content-dim);
    position: relative;
}

.w50825980 ul li::marker {
    color: var(--brand-primary);
    font-size: 1.2em;
}

/* Специальные стили для списков на странице слотов */
.v60381065 .w50825980 ul {
    list-style: none;
    padding-left: 0;
}

.v60381065 .w50825980 ul li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--content-dim);
    line-height: 1.8;
}

.v60381065 .w50825980 ul li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.v60381065 .w50825980 ul li strong {
    color: var(--gold);
    font-weight: 700;
}

.w50825980 a {
    color: var(--brand-ink, var(--brand-primary));
    text-decoration: underline;
    text-decoration-color: rgba(var(--brand-rgb), 0.4);
    text-underline-offset: 4px;
    transition: var(--ease-out);
}

.w50825980 a:hover {
    text-decoration-color: var(--brand-primary);
    text-shadow: var(--glow-text);
}

.w50825980 strong,
.w50825980 b {
    color: var(--content-high);
    font-weight: 700;
}

/* Tables */
.w50825980 table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-edge);
}

.w50825980 th,
.w50825980 td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--glass-edge);
}

.w50825980 th {
    background: rgba(var(--brand-rgb), 0.15);
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.w50825980 tr:hover {
    background: rgba(var(--brand-rgb), 0.08);
}

/* ==============================================
   SLOTS SHOWCASE
   ============================================== */

.g56980706,
.x78305717.o97951406 {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(var(--brand-rgb), 0.08) 100%);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-2xl);
    position: relative;
}

.g56980706 h2,
.x78305717.o97951406 h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: var(--space-xl);
    border: none;
    padding: 0;
}

.g56980706 h2::after,
.x78305717.o97951406 h2::after {
    display: none;
}

.z78731471 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.m31680598 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--ease-spring);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.m31680598.i77341022 {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.m31680598::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transition: var(--ease-out);
}

.m31680598::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--brand-rgb), 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: var(--ease-out);
}

.m31680598:hover::before {
    transform: scaleX(1);
}

.m31680598:hover::after {
    opacity: 1;
}

.m31680598:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--glass-edge-active);
    box-shadow: var(--glow-lg), var(--shadow-xl);
}

.m31680598 img,
.m31680598 .b50489907 {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: var(--ease-out);
    position: relative;
    z-index: 1;
}

.m31680598:hover img,
.m31680598:hover .b50489907 {
    transform: scale(1.05);
}

.m31680598 h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xs);
    color: var(--content-high);
    position: relative;
    z-index: 1;
}

.m31680598 .l90997327 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border-top: 2px solid var(--success);
    border-radius: 0 0 10px 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: var(--space-2xs);
    position: relative;
    z-index: 1;
}

.m31680598 .l90997327 span {
    color: var(--success);
    font-weight: 800;
}

.m31680598 .x24434861,
.m31680598 .b53239659 {
    text-align: center;
    color: var(--content-dim);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.k69516212,
.u13035666 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    justify-content: center;
    position: relative;
    z-index: 1;
}

.s51802546,
.u13035666 .v27991035 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.25) 0%, rgba(var(--brand-rgb), 0.1) 100%);
    color: var(--brand-vivid);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(var(--brand-rgb), 0.35);
    transition: var(--ease-out);
}

.s51802546:hover,
.u13035666 .v27991035:hover {
    background: var(--brand-primary);
    color: var(--on-accent);
    transform: scale(1.08);
}

/* ==============================================
   SLOTS PAGE - Специальные стили для страницы слотов
   ============================================== */

/* Контейнер страницы слотов */
.v60381065 {
    padding: var(--space-xl) 0;
}

/* Заголовок страницы слотов */
.x14116945 {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.x14116945::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--grad-gold);
    border-radius: var(--radius-full);
}

/* Фильтры и категории слотов */
.k52309036 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(var(--glass-blur));
}

.x99391637 {
    padding: var(--space-xs) var(--space-lg);
    background: transparent;
    border: 2px solid var(--glass-edge);
    border-radius: var(--radius-full);
    color: var(--content-dim);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
}

.x99391637::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-gold);
    opacity: 0;
    transition: var(--ease-out);
    z-index: -1;
}

.x99391637:hover,
.x99391637.k55615204 {
    color: var(--content-high);
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.x99391637:hover::before,
.x99391637.k55615204::before {
    opacity: 1;
}

/* Улучшенные карточки слотов для страницы */
.v60381065 .m31680598 {
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 215, 0, 0.03) 100%);
    border: 2px solid var(--glass-edge);
    box-shadow: var(--shadow-md);
}

.v60381065 .m31680598::before {
    background: var(--grad-gold);
    height: 4px;
}

.v60381065 .m31680598:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-color: var(--gold);
    box-shadow: var(--glow-lg), 0 0 30px var(--gold-glow);
}

/* RTP индикатор — премиальный минималистичный стиль */
.l90997327 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-2xs) var(--space-sm) var(--space-2xs) var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-left: 3px solid var(--success);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    position: relative;
}

.l90997327 span {
    color: var(--success);
    font-weight: 800;
}

.l90997327.w61946118 {
    border-left-color: var(--gold);
}

.l90997327.w61946118 span {
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}

/* Провайдеры слотов */
.b53239659 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: var(--space-2xs) var(--space-sm);
    background: rgba(var(--brand-rgb), 0.1);
    border: 1px solid rgba(var(--brand-rgb), 0.3);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-top: var(--space-xs);
}

.b53239659::before {
    content: '🎮';
    font-size: 14px;
}

/* Бейджи для слотов */
.i87841624 {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-2xs) var(--space-xs);
    background: var(--grad-gold);
    color: var(--surface-deep);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px var(--gold-glow);
    z-index: 2;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px var(--gold-glow);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 25px var(--gold-glow), 0 0 35px var(--gold-glow);
    }
}

.i87841624.x99220337 {
    background: linear-gradient(135deg, #00C853 0%, #4CAF50 100%);
    color: var(--content-high);
    box-shadow: 0 0 15px var(--success-glow);
}

.i87841624.u45253692 {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--content-high);
    box-shadow: 0 0 15px var(--error-glow);
}

.i87841624.a85034154 {
    background: var(--grad-gold);
    animation: jackpot-glow 1.5s ease-in-out infinite;
}

@keyframes jackpot-glow {
    0%, 100% { 
        box-shadow: 0 0 20px var(--gold-glow);
    }
    50% { 
        box-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--gold-glow);
    }
}

/* Статистика слота */
.l92616843 {
    display: flex;
    justify-content: space-around;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--glass-edge);
}

.k90034428 {
    text-align: center;
    flex: 1;
}

.u43956860 {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 4px;
}

.y96420346 {
    font-size: 11px;
    color: var(--content-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Кнопка "Играть" на карточке */
.m17688344 {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    background: var(--grad-gold);
    color: var(--surface-deep);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--ease-out);
    box-shadow: 0 0 20px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.m17688344::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    transform: translateX(-100%);
    transition: 0.5s;
}

.m17688344:hover::before {
    transform: translateX(100%);
}

.m17688344:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--gold-glow), 0 0 50px var(--gold-glow);
}

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

/* Секция провайдеров */
.v18695347 {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-2xl);
}

.v18695347 h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: var(--space-xl);
    color: var(--content-high);
}

.k41324032 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.q58473818 {
    background: rgba(var(--brand-rgb), 0.05);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--ease-out);
    cursor: pointer;
}

.q58473818:hover {
    background: rgba(var(--brand-rgb), 0.1);
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: var(--glow-md);
}

.q58473818 img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: var(--space-sm);
    filter: grayscale(0.3);
    transition: var(--ease-out);
}

.q58473818:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.q58473818 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--content-high);
    margin: 0;
}

/* Анимации для страницы слотов */
@keyframes slot-card-enter {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.m31680598.i77341022 {
    animation: slot-card-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Эффект блеска на карточке */
.m31680598::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.m31680598:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* Мобильные стили для страницы слотов */
@media (max-width: 768px) {
    .k52309036 {
        padding: var(--space-md);
        gap: var(--space-xs);
    }
    
    .x99391637 {
        font-size: 12px;
        padding: var(--space-2xs) var(--space-md);
    }
    
    .z78731471 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .m31680598 {
        padding: var(--space-sm);
    }
    
    .m31680598 img,
    .m31680598 .b50489907 {
        height: 120px;
    }
    
    .l92616843 {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .k41324032 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .i87841624 {
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* ==============================================
   ADVANTAGE CARDS
   ============================================== */

.u37507340 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.y89710178 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--ease-spring);
    opacity: 0;
    transform: translateY(30px);
}

.y89710178.i77341022 {
    opacity: 1;
    transform: translateY(0);
}

.y89710178:hover {
    transform: translateY(-10px);
    border-color: var(--brand-primary);
    box-shadow: var(--glow-md);
}

.t67314335 {
    font-size: 56px;
    margin-bottom: var(--space-md);
    display: block;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.y89710178 h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
    color: var(--brand-primary);
}

.y89710178 p {
    color: var(--content-dim);
    font-size: 15px;
    line-height: 1.7;
}

/* ==============================================
   INFO BLOCKS
   ============================================== */

.x78305717 {
    background: var(--glass-bg);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    opacity: 0;
    transform: translateX(-30px);
}

.x78305717.i77341022 {
    opacity: 1;
    transform: translateX(0);
}

.x78305717 h3 {
    color: var(--brand-primary);
    margin-bottom: var(--space-sm);
    font-size: 18px;
}

.x78305717 p {
    color: var(--content-dim);
    margin: 0;
}

/* ==============================================
   FAQ SECTION
   ============================================== */

.d36310005 {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(var(--brand-rgb), 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.d36310005::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    opacity: 0.5;
}

.d36310005 h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    border: none;
    padding: 0;
    font-size: 1.6rem;
}

.d36310005 h2::after {
    display: none;
}

.u23569758,
.y17520922 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* FAQ variants */
.d36310005.i74020320 .u23569758 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}
.d36310005.q96939416 .t50855631::before { display: none; }
.d36310005.q96939416 .t50855631 { padding-left: 1.1rem; }
.d36310005.q96939416 .c84183456 { border-style: dashed; background: rgba(0, 0, 0, 0.22); }
.d36310005.x64976387 { background: rgba(0, 0, 0, 0.28); border-style: dashed; }
.d36310005.x64976387 h2 { text-align: left; }

.c84183456 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c84183456:hover {
    border-color: rgba(var(--brand-rgb), 0.3);
}

.c84183456.m31327390 {
    border-color: rgba(var(--brand-rgb), 0.4);
    box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.15);
}

.c84183456.m31327390 .t50855631 {
    color: var(--brand-primary);
}

.c84183456.m31327390 .t50855631::after {
    transform: translateY(-40%) rotate(-135deg);
}

.t50855631 {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.1rem 1.25rem;
    padding-right: 3rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--content-high);
    cursor: pointer;
    position: relative;
    text-align: left;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.t50855631:hover {
    color: var(--brand-primary);
}

.t50855631::before {
    content: '';
    width: 4px;
    height: 1.1em;
    margin-right: 1rem;
    background: var(--brand-primary);
    border-radius: 2px;
    opacity: 0.6;
    flex-shrink: 0;
}

.t50855631 span {
    flex: 1;
}

.t50855631::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary);
    transform: translateY(-60%) rotate(45deg);
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.x71073157 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.c84183456.m31327390 .x71073157 {
    max-height: 800px;
}

.x71073157 p,
.x71073157 div {
    padding: 0 1.25rem 1.25rem;
    padding-left: calc(1.25rem + 4px + 1rem);
    margin: 0;
    color: var(--content-dim);
    line-height: 1.75;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.x71073157 a {
    color: var(--brand-ink, var(--brand-primary));
    text-decoration: underline;
    text-underline-offset: 2px;
}

.x71073157 a:hover {
    color: var(--brand-primary-light);
}

@media (max-width: 640px) {
    .x71073157 p, .x71073157 div { padding-left: 1.25rem; }
}

/* ==============================================
   BREADCRUMBS
   ============================================== */

.a63985308 {
    padding: var(--space-md) 0;
    margin-bottom: var(--space-lg);
}

.s13169728 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    list-style: none;
}

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

.e51418466 {
    color: var(--brand-primary);
    font-size: 13px;
    padding: var(--space-3xs) var(--space-xs);
    border-radius: var(--radius-xs);
    transition: var(--ease-out);
}

.e51418466:hover {
    background: var(--glass-bg);
}

.f51423327.k55615204 {
    color: var(--content-muted);
    font-size: 13px;
}

.p20724163 {
    color: var(--content-muted);
    font-size: 14px;
}

/* Всплывающее предложение — другая вёрстка */
.g24190066,
.d33784729 {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(180%);
    width: auto;
    max-width: 360px;
    min-width: 280px;
    padding: 16px 52px 16px 18px;
    z-index: 10000;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(20, 28, 26, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--brand-rgb), 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.g24190066.i27400258,
.d33784729.i27400258 {
    transform: translateX(-50%) translateY(0);
}

.t84079229 {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #e5e5e5;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.t84079229:hover {
    background: rgba(255, 255, 255, 0.15);
}

.p49831099,
.f67680145 {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 480px) {
    .g24190066,
    .d33784729 {
        min-width: 260px;
        max-width: 90%;
        padding: 14px 48px 14px 14px;
    }
}

.e97966348 {
    font-size: 28px;
    flex-shrink: 0;
}

.k96291500,
.x24393757 {
    flex: 1;
    min-width: 0;
}

.p36177235,
.q12103656 {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-primary);
    line-height: 1.2;
}

.d90961243,
.b55047067 {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    margin-top: 2px;
    line-height: 1.3;
}

.s96809312 {
    flex-shrink: 0;
}

.s96809312 .b24711501 {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    background: var(--brand-primary);
    color: #0a0a0a;
    border: none;
}

/* ==============================================
   FOOTER
   ============================================== */

.a94818748 {
    background: linear-gradient(180deg, var(--surface-deep) 0%, var(--surface-void) 100%);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent 5%, var(--brand-primary) 50%, transparent 95%) 1;
    padding: var(--space-3xl) 0 0;
    margin-top: var(--space-3xl);
    position: relative;
}

.a94818748::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: radial-gradient(ellipse at 50% 0%, rgba(var(--brand-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.m54848864 {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.o74710788 {
    padding-bottom: var(--space-xl);
}

.d46368127 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

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

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

.q85319116 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--ease-out);
    position: relative;
    overflow: hidden;
}

.q85319116::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 3px;
    height: 60%;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    transform: scaleY(0);
    transition: var(--ease-out);
}

.q85319116:hover::before {
    transform: scaleY(1);
}

.q85319116:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-edge-active);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-md);
}

.q85319116 h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--content-high);
}

.q85319116 p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--content-dim);
    margin: 0;
}

.l48514659 {
    text-align: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--glass-edge);
    border-bottom: 1px solid var(--glass-edge);
}

.l48514659 h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--content-high);
}

.f67022497 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.a51755772 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-sm);
    color: var(--content-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--ease-out);
}

.a51755772:hover,
.a51755772.k55615204 {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--surface-deep);
    transform: translateY(-3px);
    box-shadow: var(--glow-sm);
}

.l42912651 {
    padding: var(--space-lg) 0;
}

.q82317732 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .q82317732 {
        flex-direction: column;
        text-align: center;
    }
}

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

.o28471208 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t61634561 {
    font-size: 12px;
    color: var(--content-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.f79098739 {
    text-align: center;
    flex: 1;
}

.f79098739 p {
    font-size: 13px;
    color: var(--content-dim);
    margin: 0 0 6px;
}

.m43394900 {
    font-size: 11px !important;
    color: var(--content-muted) !important;
}

.b58804115 {
    display: flex;
    gap: 14px;
}

.w73119078 {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--content-dim);
}

/* Блок ключевых тем (облако) — другая структура */
.q90408082,
.g34327672 {
    background: rgba(var(--brand-rgb), 0.06);
    border: 1px solid rgba(var(--brand-rgb), 0.2);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.q90408082::before,
.g34327672::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.4), transparent);
}

.o72902534,
.g86090366 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--content-high);
    text-align: center;
    position: relative;
    z-index: 1;
}

.l89655663,
.m98324618 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.h36878577,
.b74247611 {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: var(--content-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    white-space: nowrap;
}

.h36878577:hover,
.b74247611:hover {
    background: rgba(var(--brand-rgb), 0.2);
    border-color: rgba(var(--brand-rgb), 0.45);
    transform: translateY(-3px);
    color: var(--content-high);
}

.h36878577.g29087954,
.b74247611.g29087954 {
    font-size: 11px;
    padding: 6px 14px;
}

.h36878577.u13851652,
.b74247611.u13851652 {
    font-size: 14px;
    padding: 11px 24px;
    font-weight: 600;
}

/* ==============================================
   ANIMATIONS
   ============================================== */

.r10537261 {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--glow-md); }
    50% { box-shadow: var(--glow-lg); }
}

.v27828043 {
    animation: float-anim 6s ease-in-out infinite;
}

@keyframes float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.j17977997 {
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { text-shadow: var(--glow-text); }
    50% { text-shadow: 0 0 50px rgba(var(--brand-rgb), 1); }
}

.z61911009 {
    transition: var(--ease-spring);
}

.z61911009:hover {
    transform: translateY(-8px);
}

/* Loading */
.c62971210 {
    text-align: center;
    padding: var(--space-3xl);
    max-width: 560px;
    margin: var(--space-3xl) auto;
}

.m95797390 {
    font-size: 80px;
    margin-bottom: var(--space-lg);
    animation: icon-bounce 1.5s ease-in-out infinite;
}

.c62971210 h2 {
    margin-bottom: var(--space-md);
    border: none;
    padding: 0;
}

.c62971210 h2::after {
    display: none;
}

.e15179006 {
    height: 6px;
    background: var(--glass-bg);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: var(--space-lg);
}

.x70396013 {
    height: 100%;
    width: 40%;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    animation: progress-move 1.5s ease-in-out infinite;
}

@keyframes progress-move {
    0% { width: 0%; margin-left: 0; }
    50% { width: 60%; }
    100% { width: 0%; margin-left: 100%; }
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 768px) {
    :root {
        --space-xl: 32px;
        --space-2xl: 48px;
        --space-3xl: 64px;
    }
    
    body {
        font-size: 15px;
    }
    
    .k63214118 {
        padding-top: 62px;
    }
    
    .g69202968 {
        padding: 8px 16px;
    }
    
    .u54888610 {
        height: 45px;
    }
    
    .k79860752 {
        top: 80px;
    }
    
    .o10506202 {
        font-size: 28px;
    }
    
    .q85806938 {
        font-size: 26px;
    }
    
    .s21976412 {
        padding: var(--space-lg);
    }
    
    .n38805929 {
        gap: var(--space-md);
    }
    
    .r74677311 {
        font-size: 34px;
    }
    
    .y20486276 {
        flex-direction: column;
    }
    
    .y20486276 .b24711501 {
        width: 100%;
    }
    
    .z78731471 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .m31680598 {
        padding: var(--space-sm);
    }
    
    .m31680598 img,
    .m31680598 .b50489907 {
        height: 140px;
    }
    
    .m31680598 h4 {
        font-size: 13px;
    }
    
    .y38122428 {
        padding: var(--space-xl);
    }
    
    .d24577609 {
        font-size: 22px;
    }
    
    .f56234981 {
        font-size: 1.1rem;
    }
    
    .m98324618 {
        gap: 8px;
    }
    
    .b74247611 {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .d33784729 {
        bottom: var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
        width: auto;
        transform: translateX(0) translateY(300%);
    }
    
    .d33784729.i27400258 {
        transform: translateX(0) translateY(0);
    }
    
    .q12103656 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 20px;
        --space-xl: 24px;
    }
    
    body {
        font-size: 14px;
    }
    
    .k63214118 {
        padding-top: 58px;
    }
    
    .o10506202 {
        font-size: 24px;
    }
    
    .q85806938 {
        font-size: 22px;
    }
    
    .q19984952 {
        font-size: 10px;
    }
    
    .r74677311 {
        font-size: 28px;
    }
    
    .z78731471 {
        gap: var(--space-xs);
    }
    
    .m31680598 img,
    .m31680598 .b50489907 {
        height: 100px;
    }
    
    .m31680598 h4 {
        font-size: 11px;
    }
    
    .m31680598 .l90997327 {
        font-size: 10px;
    }
    
    .b74247611 {
        padding: 7px 14px;
        font-size: 11px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .b24711501,
    .b74247611,
    .a51755772,
    .c35111400,
    .m31680598 {
        min-height: 48px;
    }
    
    .b24711501:hover,
    .b74247611:hover,
    .a51755772:hover,
    .m31680598:hover {
        transform: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .v27828043,
    .r10537261,
    .j17977997 {
        animation: none;
    }
}

/* Print */
@media print {
    .r59513029,
    .k79860752,
    .g24190066,
    .d33784729,
    .r33778667,
    .a94818748,
    .q90408082,
    .g34327672,
    .m64500534,
    .y38122428 {
        display: none !important;
    }
    
    .k63214118 {
        padding-top: 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}


/* ==============================================
   ДИЗАЙН-СЕМЕЙСТВО — токены
   f2 — Плита: Брутальный флэт: прямые углы, толстые рамки, ноль свечений, плотный ритм, узкий гротеск.
   ============================================== */
body.qt3qd2 {
    --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --space-3xs: 4px;
    --space-2xs: 7px;
    --space-xs: 11px;
    --space-sm: 15px;
    --space-md: 17px;
    --space-lg: 22px;
    --space-xl: 32px;
    --space-2xl: 43px;
    --space-3xl: 60px;
    --space-4xl: 119px;
    --radius-xs: 0px;
    --radius-sm: 1px;
    --radius-md: 2px;
    --radius-lg: 3px;
    --radius-xl: 3px;
    --radius-2xl: 4px;
    --surface-void: #15150e;
    --surface-deep: #1a1a10;
    --surface-raised: #222216;
    --surface-elevated: #2b2b19;
    --surface-overlay: #1a1a10;
    --content-high: #ffffff;
    --content-dim: rgba(255,255,255,0.72);
    --content-muted: rgba(255,255,255,0.54);
    --radius-full: 4px;
    --ds-border-w: 2px;
    --ds-border-c: rgba(255,255,255,0.16);
    --ds-container: 1389px;
    --ds-article: 100%;
    --ds-blur: 0px;
    --glass-bg: rgba(255,255,255,0.03);
    --glass-bg-hover: rgba(255,255,255,0.06);
    --glass-edge: rgba(255,255,255,0.16);
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
    --glow-sm: none;
    --glow-md: none;
    --glow-lg: none;
    --glow-xl: none;
    --glow-text: none;
    --ds-glow: none;
    --ds-card-shadow: none;
    --ds-section-gap: 52px;
    --ds-btn-radius: 1px;
    --ds-btn-transform: uppercase;
    --ds-btn-spacing: 2px;
    --brand-ink: #c7b13e;
    --brand-fill: #817325;
    --brand-on-fill: #ffffff;
}

/* ==============================================
   ДИЗАЙН-СЕМЕЙСТВА — структура
   ============================================== */

/* Типографика семейства. Селектор с классом нужен, чтобы перебить
   инлайновый `body { font-family: -apple-system … }` из enenen.r51014793:
   у него специфичность ниже, но он идёт позже в документе. */
body[class*="qt3qd"] {
    font-family: var(--font-body);
    /* цвет и фон тоже перебиваем: в инлайновых стилях шаблона есть
       `body { color: #f5f5f7 }` без переменной — на светлом семействе
       это давало светлый текст на светлом фоне */
    color: var(--content-main);
    background-color: var(--surface-deep);
}
body[class*="qt3qd"] h1,
body[class*="qt3qd"] h2,
body[class*="qt3qd"] h3,
body[class*="qt3qd"] .o10506202,
body[class*="qt3qd"] .r73286217,
body[class*="qt3qd"] .u47443472 { font-family: var(--font-display); }

/* Общие правила. Селектор с body[class*="qt3qd"] обязателен: критический CSS
   в enenen.r51014793 печатается инлайном после <link> на styles.r51014793 и при равной
   специфичности перекрывал бы и контейнер, и кнопки. */
body[class*="qt3qd"] .i25121876 { max-width: var(--ds-container, 1440px); }
body[class*="qt3qd"] .n58808447 { max-width: var(--ds-article, 100%); margin-left: auto; margin-right: auto; }
body[class*="qt3qd"] .b24711501 {
    border-radius: var(--ds-btn-radius, var(--radius-md));
    text-transform: var(--ds-btn-transform, uppercase);
    letter-spacing: var(--ds-btn-spacing, 1.2px);
}
body[class*="qt3qd"] .x31303209,
body[class*="qt3qd"] .y89710178,
body[class*="qt3qd"] .x78305717,
body[class*="qt3qd"] .m64500534,
body[class*="qt3qd"] .m31680598,
body[class*="qt3qd"] .q58473818,
body[class*="qt3qd"] .c84183456 {
    box-shadow: var(--ds-card-shadow, var(--shadow-md));
}

/* ── f2 «Плита»: прямые углы, толстые рамки, ноль блюра ── */
body.qt3qd2 .r59513029 {
    background: var(--surface-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: var(--ds-border-w) solid var(--ds-border-c);
}
body.qt3qd2 .x31303209,
body.qt3qd2 .y89710178,
body.qt3qd2 .x78305717,
body.qt3qd2 .m64500534,
body.qt3qd2 .m31680598,
body.qt3qd2 .q58473818,
body.qt3qd2 .c84183456,
body.qt3qd2 .g46004644 {
    border: var(--ds-border-w) solid var(--ds-border-c);
    background: var(--surface-raised);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
body.qt3qd2 .b24711501 { border: var(--ds-border-w) solid currentColor; }
body.qt3qd2 .o10506202,
body.qt3qd2 h2, body.qt3qd2 h3 { text-transform: uppercase; letter-spacing: 0.5px; }
body.qt3qd2 .h86376287 { border: var(--ds-border-w) solid var(--ds-border-c); }

/* ── f3 «Стекло»: плавающая шапка{
    background: var(--surface-overlay);
    backdrop-filter: saturate(160%) blur(var(--ds-blur));
    -webkit-backdrop-filter: saturate(160%) blur(var(--ds-blur));
    border-bottom: 1px solid var(--glass-edge);
}

/* ── f4 «Светлая»: светлые поверхности, серые рамки{
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(140%) blur(var(--ds-blur));
    -webkit-backdrop-filter: saturate(140%) blur(var(--ds-blur));
    border-bottom: 1px solid var(--ds-border-c);
}

/* ── f5 «Журнал»: узкая колонка{
    background: var(--surface-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--ds-border-c);
}

/* ── Hero-лендинг: подхватывает семейство ──
   Палитра и шрифты приходят через токены (см. landing-hero.r51014793),
   здесь — только форма и характер, чтобы первый экран не выбивался. */
body.qt3qd2 .y29761858,
body.qt3qd2 .l91695867,
body.qt3qd2 .g72926804,
body.qt3qd2 .a72074108,
body.qt3qd2 .s36939430 { border-radius: 2px; }
body.qt3qd2 .l91695867 { letter-spacing: 2px; }
body.qt3qd2 .a72074108 { border: 2px solid var(--ds-border-c); }

/* верхняя строка: дата, разделитель{ color: rgba(20,26,34,.85); }

/* липкая кнопка: тень мягче{
    box-shadow: 0 12px 30px -10px rgba(16,24,40,.35), inset 0 0 0 1px rgba(20,26,34,.10);
}

/* Ритм секций — у каждого семейства свой */
.d36310005, .g46004644, .g56980706, .f55528913 {
    margin-top: var(--ds-section-gap, var(--space-3xl));
}

/* Свечение заголовков только там, где семейство его допускает */
.o10506202 { text-shadow: var(--ds-glow-text, none); }
/* ==============================================
   Каркас страницы (page-structure.r51014793).
   Разметка была, стилей — нет: сайдбар «быстрые факты» и оглавление
   выпадали в голый столбик. Всё на токенах, поэтому подхватывает
   палитру каждого бренда.
   ============================================== */

.n44580531 { display: flow-root; }

.f17412641 { margin: var(--space-2xl) 0; }
.f17412641 > h2 { margin-bottom: var(--space-md); }
.f17412641 h3 { margin: var(--space-lg) 0 var(--space-sm); font-size: 1.05rem; }
.f17412641 p { margin: 0 0 var(--space-sm); }
.f17412641 ul, .f17412641 ol { margin: 0 0 var(--space-md); padding-left: 1.25rem; }
.f17412641 li { margin-bottom: var(--space-2xs); }

.u47589024 { margin: var(--space-lg) 0 var(--space-2xl); }
.u47589024 p { margin: 0 0 var(--space-sm); }

/* --- таблицы --- */
.q54556660 { overflow-x: auto; margin: 0 0 var(--space-md); }
.p24629513 {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
    background: var(--surface-raised);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.p24629513 th {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    background: var(--surface-elevated);
    color: var(--content-high);
    font-weight: 600;
    white-space: nowrap;
}
.p24629513 td {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid rgba(var(--surface-rgb), 0.35);
    color: var(--content-main);
    vertical-align: top;
}
.p24629513 tbody tr:nth-child(even) { background: rgba(var(--surface-rgb), 0.25); }
.q51848396 td:first-child { width: 38%; color: var(--content-high); }

/* --- оглавление: в колонки, а не простыней --- */
.a61631570 {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--surface-raised);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brand-primary);
}
.a61631570 ol {
    margin: 0;
    padding-left: 1.1rem;
    columns: 2;
    column-gap: var(--space-xl);
}
.a61631570 li { margin: 0 0 var(--space-2xs); break-inside: avoid; }
.a61631570 a { color: var(--brand-ink, var(--brand-primary)); text-decoration: none; }
.a61631570 a:hover { text-decoration: underline; }

/* --- быстрые факты: пары «параметр → значение» в сетку --- */
.m78061888 {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--surface-raised);
    border-radius: var(--radius-md);
    border: 1px solid rgba(var(--surface-rgb), 0.4);
}
.m78061888 dl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-sm) var(--space-lg);
    margin: 0;
}
.m56539400 { min-width: 0; }
.m78061888 dt {
    grid-column: auto;
    color: var(--content-dim);
    font-size: 0.85rem;
    margin: 0;
}
.m78061888 dd {
    margin: 0 0 var(--space-xs);
    color: var(--content-high);
    font-weight: 600;
    font-size: 1rem;
}

/* --- FAQ --- */
.e51900282 { margin: 0; }
.e51900282 dt {
    margin: var(--space-md) 0 var(--space-2xs);
    color: var(--content-high);
    font-weight: 600;
}
.e51900282 dd {
    margin: 0;
    padding-left: var(--space-md);
    border-left: 2px solid rgba(var(--brand-rgb), 0.35);
    color: var(--content-main);
}

/* --- истории игроков --- */
.c40247016 { padding-left: 1.2rem; }
.c40247016 li { margin-bottom: var(--space-md); }

@media (max-width: 640px) {
    .a61631570 ol { columns: 1; }
    .m78061888 { padding: var(--space-sm) var(--space-md); }
    .p24629513 { font-size: 0.88rem; }
    .p24629513 th, .p24629513 td { padding: var(--space-xs) var(--space-sm); }
}

/* ── Лендинг — первый экран, под ним открыт обычный контент сайта ──
   Прячем только плавающие виджеты, которые перекрывали бы оффер.
   Контент, шапка и футер видны и человеку, и роботу — одинаково. ── */
body.z33396425 .q90648812,
body.z33396425 #winNotifications,
body.z33396425 #supportWidget,
body.z33396425 #bonusPopup,
body.z33396425 #preloader {
  display: none !important;
}

/* Фон берём из токенов семейства: на светлом семействе жёсткий #06070b
   превращал контент под лендингом в тёмное пятно. */
body.z33396425 { background: var(--surface-deep, #06070b); }

/* Шапка сайта в hero-режиме — не поверх лендинга, а в потоке под ним.
   В обычном режиме она fixed (styles.r51014793), тут переводим в static:
   лендинг занимает первый экран, шапка встречает уже в контенте. */
body.z33396425 .r59513029 {
    position: static !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0,0,0,.55);
}

/* Шапка теперь встречается уже прокрученной (>50px), а класс .k61601436
   схлопывает логотип и кнопки входа — в hero-режиме они пропали бы навсегда.
   Возвращаем их: компактный режим здесь не имеет смысла. */
body.z33396425 .r59513029.k61601436 .l51399367 {
    opacity: 1;
    max-width: 200px;
    pointer-events: auto;
}
body.z33396425 .r59513029.k61601436 .s82098974 {
    opacity: 1;
    max-width: 300px;
    pointer-events: auto;
}

/* контент под лендингом */
body.z33396425 .k63214118 {
    padding-top: 48px;
    background: var(--surface-deep, #06070b);
    border-top: 1px solid var(--ds-border-c, rgba(255,255,255,.07));
}

/* ══ ПАЛИТРА ══ */
/* Палитра лендинга наследуется от дизайн-семейства: те же поверхности,
   текст, акцент и шрифты, что и на сайте. Значения после запятой —
   запасной вариант, если семейство почему-то не подключилось. */
.m72397680 {
    --ink:      var(--surface-void, #06070b);
    --ink-2:    var(--surface-raised, #0b0d13);
    --line:     var(--ds-border-c, rgba(255,255,255,.10));
    --line-soft:var(--glass-edge, rgba(255,255,255,.05));
    --text:     var(--content-high, #f4f1ea);
    --muted:    var(--content-muted, rgba(244,241,234,.46));
    --gold:     var(--brand-primary, #e3b45f);
    --gold-hi:  var(--brand-primary-light, #f7dda3);
    --mint:     var(--brand-secondary, #5fe3b4);

    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto auto;
    height: 100svh;
    background: var(--ink);
    color: var(--text);
    font-family: var(--font-body, 'Outfit', system-ui, -apple-system, sans-serif);
    overflow: hidden;
    isolation: isolate;
}

/* ── Фон: сетка + два медленных световых пятна + зерно ── */
.d36809873 { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.l19499711 {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg,  rgba(255,255,255,.045) 0 1px, transparent 1px 92px);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 0%, transparent 78%);
    mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 0%, transparent 78%);
    opacity: .55;
}
.w30455506 {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}
.w30455506.r35223707 {
    width: 720px; height: 720px;
    left: -180px; top: -220px;
    background: radial-gradient(circle, rgba(227,180,95,.30) 0%, transparent 68%);
    animation: lhDrift 26s ease-in-out infinite;
}
.w30455506.h44616261 {
    width: 820px; height: 820px;
    right: -240px; bottom: -320px;
    background: radial-gradient(circle, rgba(30,110,92,.42) 0%, transparent 68%);
    animation: lhDrift 34s ease-in-out infinite reverse;
}
.h50484913 {
    position: absolute; inset: 0;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes lhDrift {
    0%,100% { transform: translate3d(0,0,0) scale(1); }
    50%     { transform: translate3d(60px,50px,0) scale(1.12); }
}

/* ══ TOPBAR ══ */
.b23399283 {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
    padding: 16px 44px;
    border-bottom: 1px solid var(--line-soft);
}
.s40896448 {
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text);
}
.p85870499 {
    height: 28px; width: auto; max-width: 180px;
    display: block; object-fit: contain;
}
.k27692780 {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--text);
}
.q85980998 {
    font-size: 11px; font-weight: 600; letter-spacing: .26em;
    text-transform: uppercase; color: var(--muted);
    padding-left: 12px; border-left: 1px solid var(--line);
}
.r63637523 {
    display: flex; align-items: center; gap: 22px;
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--muted);
}
.c91280772 { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.c74210906 {
    color: rgba(244,241,234,.82); font-weight: 700;
    letter-spacing: .1em; font-variant-numeric: tabular-nums;
}
.f58730439 { color: rgba(244,241,234,.52); }
.y69607340 {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--mint); box-shadow: 0 0 0 0 rgba(95,227,180,.5);
    animation: lhPulse 2.4s ease-out infinite;
}
@keyframes lhPulse {
    0%   { box-shadow: 0 0 0 0 rgba(95,227,180,.45); }
    70%  { box-shadow: 0 0 0 9px rgba(95,227,180,0); }
    100% { box-shadow: 0 0 0 0 rgba(95,227,180,0); }
}
.w12688358 {
    border: 1px solid var(--line); border-radius: 2px;
    padding: 4px 9px; font-weight: 600; color: rgba(244,241,234,.62);
}

/* ══ ГЛАВНАЯ СЕТКА ══ */
.v90683983 {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1fr) 460px;
    gap: 56px;
    padding: 0 44px;
    min-height: 0;
    align-items: center;
}

/* ── Левая колонка ── */
.i56411922 { max-width: 640px; padding: 24px 0; }
.j83504705 {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 10px; font-weight: 600; letter-spacing: .3em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 22px;
}
.j83504705::before {
    content: ''; width: 34px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.u75315998 {
    font-family: 'Unbounded', 'Outfit', sans-serif;
    font-size: clamp(38px, 4.6vw, 70px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.035em;
    margin: 0 0 20px;
    color: var(--text);
    text-transform: none;
}
.u75315998 .o23251594 {
    display: inline-block;
    color: var(--text);
}
.u75315998 .v92295265 {
    color: var(--gold);
    background: linear-gradient(96deg, var(--gold) 0%, var(--gold-hi) 55%, var(--gold) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.z27847189 {
    font-size: 15px; line-height: 1.6; color: var(--muted);
    max-width: 430px; margin: 0 0 30px;
}

/* ══ СТАРТОВЫЙ ОФФЕР (выбирается в админке) ══
   Ярлык-«язычок» сидит на плите, сама плита в золотой рамке и светится. */
.q79154468 { position: relative; transition: filter .3s ease; }
/* clip-path у плиты режет обычную тень, поэтому свечение даём фильтром */
.q79154468.l57859427 { animation: lhAura 3.6s ease-in-out infinite; }
@keyframes lhAura {
    0%,100% { filter: drop-shadow(0 10px 26px rgba(227,180,95,.30)); }
    50%     { filter: drop-shadow(0 14px 40px rgba(227,180,95,.60)); }
}

.p96748013 { line-height: 0; font-size: 0; }
.b99234617 {
    position: relative;
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 30px 8px 15px;
    font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
    color: #14100a;
    background: linear-gradient(100deg, var(--gold-hi), var(--gold) 55%, #d9a94f);
    /* скошенный правый край — в ритме угловых срезов плиты */
    clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
    overflow: hidden;
    opacity: 0; transform: translateY(7px);
    transition: opacity .3s ease, transform .3s ease;
}
.b99234617::before { content: '★'; font-size: 13px; letter-spacing: 0; }
/* блик, пробегающий по ярлыку */
.b99234617::after {
    content: '';
    position: absolute; top: 0; bottom: 0; left: -60%;
    width: 45%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
    animation: lhShine 3.8s ease-in-out infinite;
}
@keyframes lhShine {
    0%, 62% { transform: translateX(0); }
    92%,100% { transform: translateX(360%); }
}
.q79154468.l57859427 .b99234617 { opacity: 1; transform: none; }

/* плита выбранного оффера — золотая рамка и тёплая подложка */
.q79154468.l57859427 .y29761858 {
    border-color: rgba(227,180,95,.75);
    border-left-color: var(--a);
    background: linear-gradient(120deg, rgba(227,180,95,.22), rgba(227,180,95,.05) 60%, rgba(255,255,255,.02));
    box-shadow: inset 0 0 0 1px rgba(227,180,95,.28);
}
/* фирменный отблеск оффера не должен глушить золото */
.q79154468.l57859427 .y29761858::after { opacity: .45; }

/* ── Плита активного оффера ── */
.y29761858 {
    --a: <?php echo htmlspecialchars($lhMain['accent']); ?>;
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 26px;
    max-width: 560px;
    padding: 22px 26px;
    background: linear-gradient(120deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    border: 1px solid var(--line);
    border-left: 2px solid var(--a);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: opacity .28s ease, border-color .28s ease;
}
.y29761858::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, color-mix(in srgb, var(--a) 16%, transparent) 0%, transparent 58%);
    pointer-events: none;
}
.y29761858 > * { position: relative; z-index: 1; }
.j28081619 {
    width: 92px; height: 56px;
    display: flex; align-items: center; justify-content: center;
}
.j28081619 img {
    max-width: 92px; max-height: 52px;
    width: auto; height: auto; object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.65));
}
.j28081619 span {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800; font-size: 15px; letter-spacing: .04em; color: var(--a);
}
/* Название оффера в плите визуально заменено логотипом слева.
   Из разметки не убираем: его читают скринридеры, по нему же скрипт
   подставляет имя в липкую кнопку при смене оффера. */
.a60437402 {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}
.a23568332 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 2.3vw, 34px); font-weight: 800;
    line-height: 1; letter-spacing: -.03em; color: var(--text);
    font-variant-numeric: tabular-nums;
}
.y12332574 { font-size: 13px; color: rgba(244,241,234,.6); margin-top: 7px; }
.w64043858 {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: .05em;
    color: rgba(244,241,234,.52); font-variant-numeric: tabular-nums;
    align-self: flex-start;
}

/* ── Переключатель офферов: он же индикатор автопрокрутки ── */
.o88948156 { display: flex; gap: 6px; max-width: 560px; margin: 14px 0 26px; }
.m30841206 {
    position: relative; overflow: hidden;
    flex: 1; height: 3px; padding: 0; border: 0; cursor: pointer;
    background: rgba(255,255,255,.12);
    transition: background .25s ease, transform .25s ease;
}
.m30841206:hover { background: rgba(255,255,255,.3); }
.m30841206.z87432021 { transform: scaleY(1.9); }
/* заливка активной полоски: без автопрокрутки просто закрашена,
   с автопрокруткой — наполняется за время показа оффера */
.m30841206::after {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
    background: var(--gold);
}
.m30841206.z87432021::after { width: 100%; }
.m30841206.z87432021.y60879944::after { width: 0; animation: lhStepFill var(--lh-slide, 6s) linear forwards; }
@keyframes lhStepFill { from { width: 0; } to { width: 100%; } }

/* ── Кнопки ── */
.h82635025 { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; }
.l91695867 {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(100deg, var(--gold-hi), var(--gold) 55%, #c99a45);
    color: #14100a; text-decoration: none;
    font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: 16px 30px; border: 0; border-radius: 2px; cursor: pointer;
    box-shadow: 0 12px 34px -14px rgba(227,180,95,.85);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.l91695867:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -14px rgba(227,180,95,.95); filter: brightness(1.05); }
.l91695867 svg { width: 15px; height: 15px; }
.g72926804 {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--text);
    font-family: inherit; font-size: 14px; font-weight: 500; letter-spacing: .04em;
    padding: 16px 26px; border: 1px solid var(--line); border-radius: 2px;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.g72926804:hover { border-color: rgba(227,180,95,.6); color: var(--gold); background: rgba(227,180,95,.06); }
.g89013290 {
    font-size: 10px; letter-spacing: .1em; color: var(--muted);
    border: 1px solid var(--line); border-radius: 2px; padding: 2px 6px;
}

/* ── Мини-факты ── */
.w80493204 {
    display: flex; gap: 0; margin-top: 34px;
    border-top: 1px solid var(--line-soft); padding-top: 18px; max-width: 560px;
}
.p34772943 { padding-right: 26px; margin-right: 26px; border-right: 1px solid var(--line-soft); }
.p34772943:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.u83268852 {
    font-family: 'Unbounded', sans-serif; font-size: 17px; font-weight: 700;
    color: var(--text); font-variant-numeric: tabular-nums;
}
.x26885089 {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); margin-top: 5px;
}

/* ══ ПРАВАЯ КОЛОНКА — вертикальный рейл офферов ══ */
.w53726266 {
    display: flex; flex-direction: column;
    height: 100%; min-height: 0;
    border-left: 1px solid var(--line-soft);
    padding: 22px 0 22px 34px;
}
.v11388085 {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 91%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 91%, transparent 100%);
}
.v11388085::-webkit-scrollbar { width: 0; height: 0; display: none; }
.v11388085.q75293812 { cursor: grabbing; -webkit-user-select: none; user-select: none; }
.v11388085 img { -webkit-user-drag: none; user-drag: none; }
.c88117668 {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 14px; flex-shrink: 0;
    font-size: 10px; font-weight: 600; letter-spacing: .26em;
    text-transform: uppercase; color: var(--muted);
}
/* подсказка «ленту можно крутить» */
.s91440434 {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(244,241,234,.5); letter-spacing: .18em;
}
.s91440434 svg { width: 13px; height: 13px; color: var(--gold); }
.s91440434 .u13858678, .s91440434 .u34960968 { display: none; }
.s91440434 svg { animation: lhHintV 1.9s ease-in-out infinite; }
@keyframes lhHintV { 0%,100% { transform: translateY(-2px); opacity: .55; } 50% { transform: translateY(2px); opacity: 1; } }
@keyframes lhHintH { 0%,100% { transform: translateX(-3px); opacity: .55; } 50% { transform: translateX(3px); opacity: 1; } }
.v15357879 {
    display: flex; flex-direction: column; gap: 12px;
    animation: lhRoll 38s linear infinite;
    will-change: transform;
}
.v11388085:hover .v15357879 { animation-play-state: paused; }
/* фолбэк без JS: лента едет сама, шаг = одна копия списка */
@keyframes lhRoll { 0% { transform: translateY(0); } 100% { transform: translateY(calc(-100% / var(--lh-reps, 3))); } }

.a72074108 {
    --a: var(--gold);
    position: relative;
    display: grid;
    grid-template-columns: 3px minmax(0,1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 18px 16px 0;
    background: linear-gradient(100deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
    border: 1px solid var(--line-soft);
    border-left: 0;
    text-decoration: none; color: var(--text);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.s66331520 { display: block; align-self: stretch; background: var(--a); }
.a72074108:hover {
    transform: translateX(-6px);
    border-color: color-mix(in srgb, var(--a) 45%, transparent);
    background: linear-gradient(100deg, color-mix(in srgb, var(--a) 12%, transparent), rgba(255,255,255,.02));
}
.a72074108.z87432021 {
    border-color: color-mix(in srgb, var(--a) 55%, transparent);
    background: linear-gradient(100deg, color-mix(in srgb, var(--a) 15%, transparent), rgba(255,255,255,.02));
}
/* карточка стартового оффера в ленте — золотая рамка и ярлык сверху */
.a72074108.d93939797 {
    padding-top: 34px;
    border-color: rgba(227,180,95,.5);
    background: linear-gradient(100deg, rgba(227,180,95,.16), rgba(255,255,255,.02));
}
.a72074108.d93939797:hover { border-color: rgba(227,180,95,.85); }
.w28398886 {
    position: absolute; top: 0; left: 3px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 20px 5px 12px;
    font-size: 8.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
    color: #14100a; background: linear-gradient(100deg, var(--gold-hi), var(--gold) 60%, #d9a94f);
    clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
}
.w28398886::before { content: '★'; font-size: 10px; letter-spacing: 0; }
.i38181478 { display: block; min-width: 0; padding-left: 18px; }
.f41680289 { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.f41680289 img {
    /* подпись рядом убрана — логотипу можно отдать всю строку */
    max-width: 118px; max-height: 30px; width: auto; height: auto; object-fit: contain;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.6));
}
.h48116547 {
    font-size: 9.5px; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--muted);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.p34278049 {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 19px; font-weight: 700; line-height: 1; letter-spacing: -.02em;
    color: var(--text); font-variant-numeric: tabular-nums;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.f27010421 { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
.v55887155 {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; flex-shrink: 0;
    border: 1px solid var(--line); border-radius: 50%;
    color: var(--a);
    transition: background .2s ease, transform .2s ease;
}
.a72074108:hover .v55887155 { background: color-mix(in srgb, var(--a) 20%, transparent); transform: rotate(45deg); }
.v55887155 svg { width: 13px; height: 13px; }

/* ══ БЕГУЩАЯ СТРОКА ══ */
.s69496956 {
    position: relative; z-index: 2;
    border-top: 1px solid var(--line-soft);
    background: rgba(255,255,255,.02);
    padding: 11px 0;
    overflow: hidden; white-space: nowrap;
}
.j33275177 { display: inline-flex; animation: lhTick 46s linear infinite; will-change: transform; }
.s69496956:hover .j33275177 { animation-play-state: paused; }
.x24644487 {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0 26px;
    font-size: 10.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
    color: rgba(244,241,234,.55); white-space: nowrap;
}
.x24644487 b { color: var(--text); font-weight: 700; }
.x24644487 i { color: var(--gold); font-style: normal; font-size: 7px; }
@keyframes lhTick { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }

/* ══ ДИСКЛЕЙМЕР ══ */
.h63905069 {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 14px;
    padding: 9px 44px;
    font-size: 11px; color: rgba(244,241,234,.52);
    border-top: 1px solid var(--line-soft);
}
.h63905069 span { color: rgba(244,241,234,.5); font-weight: 600; letter-spacing: .1em; }

/* ══ АДАПТИВ ══ */
@media (max-width: 1280px) {
    .v90683983 { grid-template-columns: minmax(0,1fr) 380px; gap: 36px; padding: 0 32px; }
    .b23399283, .h63905069 { padding-left: 32px; padding-right: 32px; }
}
/* ≤1024px: одна колонка, лента офферов уезжает под контент и листается вбок */
@media (max-width: 1024px) {
    html, body.z33396425 { overflow: auto !important; height: auto !important; max-height: none !important; }
    .m72397680 { height: auto; min-height: 100svh; grid-template-rows: auto auto auto auto; }
    .v90683983 { grid-template-columns: minmax(0,1fr); align-items: start; gap: 10px; padding-bottom: 26px; }
    .i56411922 { max-width: 100%; }

    .w53726266 {
        display: block; height: auto;
        border-left: 0; border-top: 1px solid var(--line-soft);
        padding: 18px 0 0; margin-top: 30px;
    }
    .v11388085 {
        display: block; flex: none;
        height: auto; overflow-x: auto; overflow-y: hidden;
        padding: 0 32px 4px; margin: 0 -32px;
        /* края подтаивают — видно, что лента продолжается за экран */
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
        scroll-snap-type: none;
    }
    .c88117668 { margin-bottom: 12px; }
    .s91440434 .h75933257, .s91440434 .w64770288 { display: none; }
    .s91440434 .u13858678 { display: inline; }
    .s91440434 .u34960968 { display: block; }
    .s91440434 svg { animation-name: lhHintH; }
    .v15357879 { flex-direction: row; animation: none; gap: 10px; }
    .a72074108 { width: 252px; flex-shrink: 0; padding: 14px 14px 14px 0; }
    .a72074108.d93939797 { padding-top: 32px; }
    .p34278049 { font-size: 18px; }
}

/* низкие экраны — ужимаем вертикальный ритм */
@media (min-width: 1025px) and (max-height: 780px) {
    .u75315998 { font-size: clamp(34px, 3.6vw, 52px); margin-bottom: 14px; }
    .z27847189 { font-size: 14px; margin-bottom: 22px; }
    .j83504705 { margin-bottom: 16px; }
    .y29761858 { padding: 16px 20px; }
    .o88948156 { margin: 12px 0 20px; }
    .l91695867, .g72926804 { padding: 13px 24px; }
    .w80493204 { margin-top: 22px; padding-top: 14px; }
}
@media (min-width: 1025px) and (max-height: 660px) {
    .w80493204 { display: none; }
    .z27847189 { display: none; }
}

@media (max-width: 720px) {
    .v90683983 { padding: 4px 18px 22px; }
    .b23399283 { padding: 13px 18px; }
    .h63905069 { padding: 10px 18px; align-items: flex-start; line-height: 1.5; }
    .r63637523 { gap: 12px; font-size: 9.5px; letter-spacing: .1em; }
    .q85980998 { display: none; }
    .i56411922 { padding: 18px 0 0; }
    .j83504705 { margin-bottom: 14px; font-size: 9px; }
    .u75315998 { font-size: clamp(30px, 9vw, 44px); margin-bottom: 14px; }
    .z27847189 { font-size: 14px; margin-bottom: 22px; }
    .b99234617 { font-size: 9.5px; letter-spacing: .2em; padding: 8px 26px 7px 13px; }
    .y29761858 { grid-template-columns: auto minmax(0,1fr); gap: 16px; padding: 18px; }
    .j28081619 { width: 66px; height: 42px; }
    .j28081619 img { max-width: 66px; max-height: 40px; }
    .w64043858 { display: none; }
    .h82635025 { flex-direction: column; }
    .l91695867, .g72926804 { justify-content: center; padding: 15px 20px; }
    .g89013290 { display: none; }
    .w80493204 { margin-top: 24px; }
    .p34772943 { padding-right: 16px; margin-right: 16px; }
    .u83268852 { font-size: 15px; }
    .x26885089 { font-size: 9px; letter-spacing: .12em; }

    /* лента офферов — компактнее и с бликом под ширину экрана */
    .w53726266 { margin-top: 26px; }
    .v11388085 { padding: 0 18px 4px; margin: 0 -18px; }
    .a72074108 { width: 210px; }
    .v55887155 { width: 28px; height: 28px; }
    .p34278049 { font-size: 16px; }
    .x24644487 { padding: 0 18px; font-size: 9.5px; letter-spacing: .16em; }
}

@media (prefers-reduced-motion: reduce) {
    .w30455506, .v15357879, .j33275177, .y69607340,
    .s91440434 svg, .b99234617::after, .q79154468.l57859427 { animation: none !important; }
    .q79154468.l57859427 { filter: drop-shadow(0 12px 32px rgba(227,180,95,.4)); }
}

/* ══ ЛИПКИЙ CTA ══
   Слева — логотип оффера, справа — само предложение. Скрыт, пока виден
   первый экран (там своя большая кнопка), появляется, когда лендинг ушёл вверх.
   position:fixed — элемент вне потока, на CLS не влияет.

   Высота ЖЁСТКО фиксирована, а safe-area вынесена в bottom, а не в padding:
   на телефоне env(safe-area-inset-bottom) меняется, когда браузер прячет свои
   панели при скролле, и кнопка на padding'е раздувалась вдвое. */
.s36939430 {
    position: fixed;
    z-index: 60;
    left: 12px;
    right: 12px;
    bottom: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px 0 10px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7dda3 0%, #e3b45f 100%);
    color: #0b0d13;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    text-decoration: none;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.75), inset 0 0 0 1px rgba(255,255,255,.14);
    transform: translateY(180%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22,.61,.36,1), opacity .22s linear;
}
.s36939430.d63998335 {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

/* Логотип на тёмной плашке: сами логотипы светлые и на золоте потерялись бы */
.d79618215 {
    flex: none;
    box-sizing: border-box;
    width: 104px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 11px;
    background: #0b0d13;
}
.d79618215 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.d79618215 span {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .04em;
    color: #f7dda3;
    white-space: nowrap;
}

/* Предложение */
.y81934198 {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}
.k38766562 {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m41338218 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
    color: rgba(11,13,19,.68);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.m41127830 {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,13,19,.12);
}
.m41127830 svg { width: 15px; height: 15px; display: block; }

.s36939430:hover { filter: brightness(1.05); }
.s36939430:active { transform: translateY(1px); }

/* десктоп — компактная плашка в правом нижнем углу */
@media (min-width: 768px) {
    .s36939430 {
        left: auto;
        right: 26px;
        bottom: 26px;
        width: 380px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .s36939430 { transform: none; transition: opacity .2s linear; }
    .s36939430:active { transform: none; }
}