
/* ==============================================
   ⚡ 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;
    }
}


/* ==============================================
   ДИЗАЙН-СЕМЕЙСТВО — токены
   f3 — Стекло: Полупрозрачные панели, сильное размытие, круглые кнопки, просторные отступы.
   ============================================== */
body.qt3qd3 {
    --font-display: 'Manrope', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --space-3xs: 4px;
    --space-2xs: 7px;
    --space-xs: 11px;
    --space-sm: 15px;
    --space-md: 22px;
    --space-lg: 33px;
    --space-xl: 52px;
    --space-2xl: 71px;
    --space-3xl: 104px;
    --space-4xl: 119px;
    --radius-xs: 9px;
    --radius-sm: 12px;
    --radius-md: 15px;
    --radius-lg: 19px;
    --radius-xl: 25px;
    --radius-2xl: 35px;
    --surface-void: #1b1b0f;
    --surface-elevated: rgba(255,255,255,0.07);
    --surface-overlay: rgba(10,14,24,0.72);
    --content-high: rgba(255,255,255,0.97);
    --content-dim: rgba(255,255,255,0.78);
    --ds-border-w: 1px;
    --ds-border-c: rgba(255,255,255,0.18);
    --ds-container: 1476px;
    --ds-article: 100%;
    --ds-blur: 35px;
    --glass-bg: rgba(255,255,255,0.08);
    --glass-bg-hover: rgba(255,255,255,0.13);
    --glass-edge: rgba(255,255,255,0.20);
    --glass-blur: 30px;
    --shadow-md: 0 18px 50px rgba(2,6,23,0.55);
    --shadow-lg: 0 28px 80px rgba(2,6,23,0.6);
    --ds-section-gap: 97px;
    --ds-btn-radius: 732px;
    --ds-btn-transform: none;
    --ds-btn-spacing: 0.2px;
    --ds-glow: var(--glow-sm);
    --ds-card-shadow: var(--shadow-md);
    --brand-ink: #413a13;
    --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 «Плита»: прямые углы, толстые рамки{
    background: var(--surface-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: var(--ds-border-w) solid var(--ds-border-c);
}

/* ── f3 «Стекло»: плавающая шапка, панели с сильным размытием ── */
body.qt3qd3 .r59513029 {
    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);
}
body.qt3qd3 .x31303209,
body.qt3qd3 .y89710178,
body.qt3qd3 .x78305717,
body.qt3qd3 .m64500534,
body.qt3qd3 .m31680598,
body.qt3qd3 .q58473818,
body.qt3qd3 .h86376287,
body.qt3qd3 .g46004644 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    backdrop-filter: blur(var(--ds-blur));
    -webkit-backdrop-filter: blur(var(--ds-blur));
}
body.qt3qd3 .t50855631 { padding-block: var(--space-md); }

/* ── 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),
   здесь — только форма и характер{ border-radius: 2px; }

body.qt3qd3 .y29761858,
body.qt3qd3 .a72074108 { border-radius: 24px; backdrop-filter: blur(var(--ds-blur)); -webkit-backdrop-filter: blur(var(--ds-blur)); }
body.qt3qd3 .l91695867,
body.qt3qd3 .g72926804,
body.qt3qd3 .s36939430 { border-radius: 999px; }

/* верхняя строка: дата, разделитель{ 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); }