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

/* Дизайн-токены - Премиум система */
:root {
    /* Поверхности */
    --surface-void: #050508;
    --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;
    --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: #00e676;
    --success-glow: rgba(0, 230, 118, 0.4);
    --warning: #ffab00;
    --warning-glow: rgba(255, 171, 0, 0.4);
    --error: #ff5252;
    --error-glow: rgba(255, 82, 82, 0.4);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.5);
    
    /* Градиенты */
    --grad-surface: linear-gradient(165deg, var(--surface-void) 0%, var(--surface-deep) 30%, var(--surface-raised) 100%);
    --grad-brand: linear-gradient(135deg, var(--brand-vivid) 0%, var(--brand-primary) 50%, var(--brand-muted) 100%);
    --grad-brand-radial: radial-gradient(circle at 30% 30%, var(--brand-vivid), var(--brand-primary), var(--brand-muted));
    --grad-shine: linear-gradient(45deg, var(--brand-vivid) 0%, var(--brand-primary) 25%, var(--brand-muted) 50%, var(--brand-primary) 75%, var(--brand-vivid) 100%);
    --grad-aurora: conic-gradient(from 180deg at 50% 50%, var(--brand-primary) 0deg, var(--brand-secondary) 120deg, var(--brand-vivid) 240deg, var(--brand-primary) 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, var(--success) 0%, var(--brand-vivid) 100%);
    --grad-gold: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ffa000 100%);
    
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-bg-active: rgba(var(--brand-rgb), 0.12);
    --glass-edge: rgba(255, 255, 255, 0.1);
    --glass-edge-active: rgba(var(--brand-rgb), 0.45);
    --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;
}

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

body {
    font-family: var(--font-body);
    background: var(--surface-raised);
    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: var(--grad-brand);
    border-radius: var(--radius-full);
    border: 3px solid var(--surface-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-vivid);
}

/* Links */
a {
    color: 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 */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 30 auto;
    padding: 0 var(--space-lg);
}

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

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

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

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

.background-effects::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; }
}

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

.orb-1 {
    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;
}

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

.orb-3 {
    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); }
}

.grid-overlay {
    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 — как в archive7VKwD (градиент, скругление, стиль ссылок)
   Действия при скролле сохранены: компактный режим
   ============================================== */

.header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: linear-gradient(135deg, var(--surface-deep) 0%, var(--surface-raised) 50%, var(--brand-muted) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0 0 20px 20px;
    height: 160px;
}

.header.site-header::before {
    display: none;
}

.header.site-header::after {
    display: none;
}

.header.site-header.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(var(--surface-rgb), 0.88) 50%, rgba(0, 0, 0, 0.92) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: 80px;
}

@media (min-width: 1025px) {
    .header.site-header.scrolled .header_logo,
    .header.site-header.scrolled .header_button {
        display: none !important;
    }
    .header.site-header.scrolled .header-wrapper {
        min-height: 56px;
        padding: 8px 24px;
    }
    .header.site-header.scrolled .main-nav.navigation {
        margin-top: 0;
        order: 1;
        flex: 1 1 auto;
        width: auto;
    }
    .header.site-header.scrolled .nav-list {
        gap: 3px;
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 24px 20px;
    min-height: 100px;
    transition: min-height 0.3s ease, padding 0.3s ease;
}

.header-inner.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.header_logo {
    flex-shrink: 0;
    order: 1;
}

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

.header_logo .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.header_logo .logo:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.logo-link {
    position: relative;
}

/* Navigation — как в archive7VKwD: по центру, flex-wrap, стиль ссылок */
.main-nav.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
    width: 100%;
    margin-top: 8px;
    min-width: 0;
    max-width: 100%;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3px;
    row-gap: 6px;
    list-style: none;
    max-width: 100%;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--content-main);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link::before {
    display: none;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.25) 0%, rgba(var(--brand-rgb), 0.15) 50%, rgba(var(--brand-rgb), 0.2) 100%);
    border-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--brand-rgb), 0.4);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-vivid) 50%, var(--brand-muted) 100%);
    border-color: var(--brand-primary);
    box-shadow: 0 4px 15px rgba(var(--brand-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
}

.nav-icon {
    font-size: 16px;
    margin-right: 2px;
}

/* Header Actions / header_button как в archive7VKwD (справа) */
.header-actions.header_button {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
    order: 3;
}

.header-register-btn {
    position: relative;
    padding-right: 50px;
}

.register-badge,
.btn-badge.register-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
    white-space: nowrap;
    z-index: 10;
}

/* Laptop/средние экраны: навигация во второй ряд как в archive7VKwD */
@media (min-width: 769px) and (max-width: 1280px) {
    .header-wrapper {
        gap: 15px;
        padding: 12px 20px;
    }
    .main-nav.navigation {
        width: 100%;
        order: 3;
        margin-top: 10px;
    }
    .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }
    .header_logo .logo {
        height: 40px;
    }
}

/* Бургер-меню (скрыто на десктопе, 3 линии как в archive7VKwD) */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--ease-out);
}

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

.burger-line {
    width: 24px;
    height: 3px;
    background: var(--content-main);
    border-radius: 3px;
    transition: var(--ease-out);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Оверлей для закрытия меню (скрыт на десктопе) */
.nav-overlay {
    display: none;
}

/* Мобильная панель: main-nav выезжает слева, оверлей */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: min(320px, 85vw);
        height: calc(100vh - 90px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex: none;
        order: unset;
        margin: 0;
        padding: var(--space-lg) 0;
        background: var(--surface-overlay);
        backdrop-filter: blur(var(--glass-blur-strong));
        -webkit-backdrop-filter: blur(var(--glass-blur-strong));
        border-right: 1px solid var(--glass-edge);
        box-shadow: var(--shadow-xl);
        z-index: calc(var(--z-fixed) - 1);
        transition: left 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
        border-radius: 0;
        border-left: 3px solid transparent;
        border-bottom: 1px solid var(--glass-edge);
        justify-content: flex-start;
    }

    .nav-link:hover,
    .nav-link.active {
        border-left-color: var(--brand-primary);
        background: rgba(var(--brand-rgb), 0.12);
    }

    .mobile-nav-actions {
        display: block;
        margin-top: auto;
        padding: var(--space-lg);
        border-top: 1px solid var(--glass-edge);
    }

    .mobile-nav-actions .btn-block {
        width: 100%;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: calc(var(--z-fixed) - 2);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (min-width: 1025px) {
    .mobile-nav-actions {
        display: none;
    }
}

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

.btn {
    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;
}

.btn::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);
}

.btn::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;
}

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

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

.btn-primary {
    background: var(--grad-brand);
    color: var(--content-high);
    box-shadow: var(--glow-md), var(--shadow-inset);
    border: 1px solid rgba(255,255,255,0.15);
}

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

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

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

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

.btn-cta {
    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); }
}

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

.btn-block {
    width: 100%;
}

.btn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--grad-gold);
    color: var(--surface-deep);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    animation: badge-bounce 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--gold-glow);
}

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

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

.main {
    padding-top: 160px;
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
}

.content-wrapper {
    animation: content-reveal 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

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

.content-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.main-title {
    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;
}

.gradient-text {
    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
   ============================================== */

.hero-banner {
    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);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-shine);
    background-size: 200% 100%;
    animation: shine-slide 3s linear infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.25) 0%, transparent 70%);
    pointer-events: none;
    animation: orb-pulse 10s ease-in-out infinite;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-banner {
        padding: var(--space-xl);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-gold);
    color: var(--surface-deep);
    padding: var(--space-2xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
    animation: badge-glow 2s ease-in-out infinite;
    box-shadow: 0 0 25px var(--gold-glow);
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 25px var(--gold-glow); transform: scale(1); }
    50% { box-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--gold-glow); transform: scale(1.03); }
}

.hero-title {
    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;
}

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

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

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

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item: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);
}

.stat-value {
    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;
    filter: drop-shadow(0 0 20px rgba(var(--brand-rgb), 0.5));
}

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

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

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

.hero-image {
    position: relative;
}

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

/* Hero слотов — как у главной, компактный */
.hero-slots {
    margin-top: var(--space-xl);
    padding: var(--space-2xl);
    text-align: center;
}
.hero-slots-inner {
    position: relative;
    z-index: 1;
}
.hero-slots-desc {
    font-size: 1.15rem;
    color: var(--content-dim);
    margin: var(--space-md) 0 var(--space-lg);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}
.hero-slots .hero-stats {
    justify-content: center;
    margin-bottom: var(--space-xl);
}
.hero-slots .hero-cta {
    justify-content: center;
}

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

.glass-card {
    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;
}

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

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

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

/* ==============================================
   CTA BLOCKS - Promotional
   ============================================== */

.cta-block {
    text-align: center;
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.15) 0%, var(--glass-bg) 50%, rgba(var(--brand-rgb), 0.1) 100%);
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-shine);
    background-size: 200% 100%;
    animation: shine-slide 2s linear infinite;
}

.cta-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--brand-rgb), 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--brand-vivid);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: var(--glow-text);
}

.cta-trust {
    font-size: 0.95rem;
    color: var(--content-dim);
    margin-bottom: var(--space-lg);
}

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

.article-content {
    font-size: 17px;
    line-height: 1.85;
}

.article-content 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);
}

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

.article-content 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);
}

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

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

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

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

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

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

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

/* Tables */
.article-content 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);
}

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

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

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

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

.slots-showcase,
.info-block.gradient-bg {
    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;
}

.slots-showcase h2,
.info-block.gradient-bg h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: var(--space-xl);
    border: none;
    padding: 0;
}

.slots-showcase h2::after,
.info-block.gradient-bg h2::after {
    display: none;
}

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

.slot-card {
    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);
}

.slot-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

.slot-card::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);
}

.slot-card:hover::before {
    transform: scaleX(1);
}

.slot-card:hover::after {
    opacity: 1;
}

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

.slot-card img,
.slot-card .slot-image {
    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;
}

.slot-card:hover img,
.slot-card:hover .slot-image {
    transform: scale(1.05);
}

.slot-card 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;
}

.slot-card .slot-rtp {
    text-align: center;
    color: var(--success);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: var(--space-2xs);
    text-shadow: 0 0 15px var(--success-glow);
    position: relative;
    z-index: 1;
}

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

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

.slot-tag,
.slot-features .badge {
    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);
}

.slot-tag:hover,
.slot-features .badge:hover {
    background: var(--brand-primary);
    color: var(--content-high);
    transform: scale(1.08);
}

/* ==============================================
   PAGE: SLOTS — дополнительная стилизация
   ============================================== */

.page-slots .slots-intro {
    font-size: 1.1rem;
    color: var(--content-dim);
    margin-bottom: var(--space-xl);
    max-width: 60ch;
}

.page-slots .info-block.gradient-bg:first-of-type {
    margin-top: 0;
}

/* Каталог слотов всегда видим — не зависим от Intersection Observer */
.page-slots .info-block.gradient-bg {
    opacity: 1 !important;
    transform: none;
}
.page-slots .info-block.gradient-bg .slot-card {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
}

.page-slots .content-wrapper {
    background: linear-gradient(180deg, transparent 0%, rgba(var(--brand-rgb), 0.04) 30%, transparent 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl) 0;
}

.page-slots .content-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--glass-edge);
}

.page-slots .info-block.gradient-bg {
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(var(--brand-rgb), 0.12) 50%, var(--glass-bg) 100%);
    border: 1px solid rgba(var(--brand-rgb), 0.25);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(var(--brand-rgb), 0.08);
    margin: var(--space-3xl) 0;
}

.page-slots .info-block.gradient-bg h2 {
    color: var(--content-high);
    text-shadow: 0 0 30px rgba(var(--brand-rgb), 0.3);
}

.page-slots .slots-grid {
    gap: var(--space-xl);
}

.page-slots .slot-card {
    border-color: rgba(var(--brand-rgb), 0.2);
}

.page-slots .slot-card:hover {
    border-color: rgba(var(--brand-rgb), 0.5);
    box-shadow: var(--glow-lg), var(--shadow-xl);
}

.page-slots .article-content h2 {
    color: var(--content-high);
}

.page-slots .article-content h3 {
    color: var(--brand-vivid);
}

/* Хедер для страницы слотов (без трапеции) */
/* Отступ для hero секции на странице слотов (чтобы не сливался с меню) */
.page-slots .main {
    padding-top: 200px;
}

.page-slots .hero-banner,
.page-slots .hero-slots {
    margin-top: 0;
}

/* Контент слотов в карточке — как на других страницах */
.article-content-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-md), var(--shadow-inset);
}
.article-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    border-radius: var(--radius-full);
}

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

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

.advantage-card {
    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);
}

.advantage-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.advantage-icon {
    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); }
}

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

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

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

.info-block {
    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);
}

.info-block.animate-in {
    opacity: 1;
    transform: translateX(0);
}

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

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

.table-wrapper {
    margin-top: var(--space-md);
}

.brands-table td,
.brands-table th {
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-edge);
}

.brands-table a {
    color: var(--brand-primary);
    text-decoration: none;
}

.brands-table a:hover {
    text-decoration: underline;
}

.brands-table tbody tr:hover {
    background: var(--glass-bg);
}

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

.faq-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    border: none;
    padding: 0;
}

.faq-section h2::after {
    display: none;
}

.faq-list,
.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--ease-out);
}

.faq-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--glow-sm);
}

.faq-question {
    padding: var(--space-lg);
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--content-high);
    cursor: pointer;
    position: relative;
    padding-right: 60px;
    transition: var(--ease-out);
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-primary);
    font-size: 12px;
    transition: var(--ease-out);
}

.faq-item:hover .faq-question {
    color: var(--brand-primary);
}

.faq-item:hover .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--content-dim);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--brand-primary);
}

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

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

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

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

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

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

.breadcrumb-item.active {
    color: var(--content-muted);
    font-size: 13px;
}

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

/* ==============================================
   BONUS POPUP
   ============================================== */

.bonus-popup {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%) translateY(300%);
    width: 94%;
    max-width: 560px;
    padding: var(--space-lg);
    z-index: var(--z-modal);
    transition: var(--ease-bounce);
    border: 2px solid var(--brand-primary);
    box-shadow: var(--glow-lg), var(--shadow-xl);
}

.bonus-popup.show {
    transform: translateX(-50%) translateY(0);
}

.popup-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    color: var(--content-dim);
    font-size: 24px;
    cursor: pointer;
    transition: var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.popup-close:hover {
    color: var(--error);
    border-color: var(--error);
    background: rgba(255, 82, 82, 0.1);
}

.popup-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

@media (max-width: 480px) {
    .popup-content {
        flex-direction: column;
        text-align: center;
    }
}

.popup-icon {
    font-size: 60px;
    flex-shrink: 0;
    animation: icon-bounce 2s ease-in-out infinite;
}

.popup-text {
    flex: 1;
}

.popup-bonus {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(var(--brand-rgb), 0.5));
}

.popup-label {
    color: var(--content-dim);
    font-size: 15px;
    margin-top: 4px;
}

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

.site-footer {
    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;
}

.site-footer::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;
}

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

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

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

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

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

.footer-block {
    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;
}

.footer-block::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);
}

.footer-block:hover::before {
    transform: scaleY(1);
}

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

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

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

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

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

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

.footer-nav-link {
    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);
}

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

.footer-social,
.footer-sitemaps {
    text-align: center;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--glass-edge);
}

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

.footer-social-links,
.footer-sitemaps-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.footer-social-link,
.footer-sitemap-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    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);
}

.footer-social-link:hover,
.footer-sitemap-link:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--surface-deep);
    transform: translateY(-2px);
}

.footer-social-icon {
    flex-shrink: 0;
    margin-right: 8px;
    vertical-align: middle;
}
.footer-social-link .footer-social-label { display: inline; }

.footer-legal {
    background: rgba(0, 0, 0, 0.4);
    padding: var(--space-lg) 0;
}

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

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

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

.brand-name {
    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;
}

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

.footer-copy {
    text-align: center;
    flex: 1;
}

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

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

.footer-seals {
    display: flex;
    gap: 14px;
}

.footer-seal {
    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);
}

/* ==============================================
   INTERACTIVE WIDGETS (выигрыши, карта, симулятор, выводы)
   ============================================== */

.aurora-widgets-section {
    margin-top: var(--space-2xl);
}

.aurora-interactive-widgets {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.aurora-widget-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--content-high);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.aurora-widget-icon {
    font-size: 1.2em;
}

.aurora-win-simulator,
.aurora-wins-map,
.aurora-live-wins,
.aurora-withdrawals-slider {
    padding: var(--space-2xl);
    margin: 0;
}

.aurora-slot-reels {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
}

.aurora-reel {
    font-size: clamp(48px, 8vw, 72px);
    width: clamp(80px, 14vw, 110px);
    height: clamp(80px, 14vw, 110px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--ease-out);
}

.aurora-reel:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--glow-md);
}

.aurora-spin-btn-wrap {
    display: flex;
    justify-content: center;
    margin: var(--space-xl) 0;
}

.aurora-spin-btn {
    margin: 0;
}

.aurora-win-result {
    margin-top: var(--space-lg);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-primary);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    text-align: center;
}

.aurora-win-result a {
    color: var(--brand-primary);
    font-weight: 700;
}

.aurora-wins-map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.aurora-city-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    transition: var(--ease-out);
}

.aurora-city-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--glow-sm);
}

.aurora-city-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--content-high);
}

.aurora-city-wins {
    font-size: 0.85rem;
    color: var(--content-dim);
}

.aurora-city-bar {
    height: 6px;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.4);
}

.aurora-live-wins-ticker {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    max-height: 320px;
    overflow-y: auto;
}

.aurora-win-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xs);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    transition: var(--ease-out);
}

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

.aurora-win-user { font-weight: 600; color: var(--content-dim); }
.aurora-win-sum { font-size: 1.1rem; font-weight: 800; color: var(--gold); text-shadow: 0 0 12px var(--gold-glow); }
.aurora-win-game { font-size: 0.9rem; color: var(--content-muted); font-style: italic; }

.aurora-live-wins-note,
.aurora-withdrawals-note {
    font-size: 0.8rem;
    color: var(--content-muted);
    margin-top: var(--space-md);
    text-align: center;
}

.aurora-withdrawals-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    margin: var(--space-lg) 0;
    -webkit-overflow-scrolling: touch;
}

.aurora-withdrawals-track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-sm);
    padding: var(--space-md);
    min-height: 52px;
}

.aurora-withdrawal-item {
    flex: 0 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.9rem;
    color: var(--content-dim);
    transition: var(--ease-out);
    white-space: nowrap;
}

.aurora-withdrawal-item:hover {
    border-color: var(--brand-primary);
}

.aurora-wd-user { color: var(--content-high); }
.aurora-wd-sum { font-weight: 700; color: var(--gold); }
.aurora-wd-time { font-size: 0.8rem; color: var(--content-muted); margin-left: 4px; }

/* Реальные отзывы игроков */
.aurora-reviews-block {
    padding: var(--space-2xl);
    margin: 0;
}
.aurora-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}
.aurora-review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: var(--ease-out);
}
.aurora-review-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--glow-sm);
}
.aurora-review-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--content-high);
    margin-bottom: var(--space-xs);
}
.aurora-review-text {
    font-size: 0.9rem;
    color: var(--content-dim);
    line-height: 1.5;
    margin: 0;
}
.aurora-review-won {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold, #f59e0b);
}

.aurora-win-notifications-root {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.aurora-win-notification {
    pointer-events: auto;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.35) 0%, rgba(var(--brand-rgb), 0.15) 100%);
    color: var(--content-high);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--brand-rgb), 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: aurora-wn-in 0.5s ease-out, aurora-wn-pulse 2s ease-in-out infinite;
}

.aurora-win-notification:hover {
    transform: scale(1.05) translateX(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--brand-rgb), 0.6);
}

.aurora-win-notification.aurora-wn-out {
    animation: aurora-wn-out 0.5s ease-out forwards;
}

@keyframes aurora-wn-in {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes aurora-wn-out {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

@keyframes aurora-wn-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--brand-rgb), 0.4); }
    50% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--brand-rgb), 0.55); }
}

.aurora-wn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aurora-wn-emoji { font-size: 32px; animation: aurora-wn-bounce 1s ease-in-out infinite; }
@keyframes aurora-wn-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.aurora-wn-body { flex: 1; min-width: 0; }
.aurora-wn-player { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--content-high); }
.aurora-wn-amount { font-size: 18px; font-weight: 900; color: var(--brand-vivid); text-shadow: 0 0 10px rgba(var(--brand-rgb), 0.8); margin-bottom: 4px; }
.aurora-wn-game { font-size: 11px; opacity: 0.9; display: flex; align-items: center; gap: 5px; }
.aurora-wn-game::before { content: '🎮'; }
.aurora-wn-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--content-high);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: var(--ease-out);
}

.aurora-wn-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .aurora-win-notifications-root { bottom: 10px; right: 10px; left: 10px; max-width: none; align-items: stretch; }
    .aurora-win-notification { padding: 12px 15px; font-size: 13px; }
}

/* ==============================================
   FOOTER PRE (блок над футером)
   ============================================== */

.footer-pre {
    padding-top: var(--space-xl);
    margin-bottom: var(--space-lg);
}

/* ==============================================
   TAG CLOUD
   ============================================== */

.tag-cloud {
    background: linear-gradient(165deg, rgba(var(--brand-rgb), 0.1) 0%, var(--glass-bg) 50%, rgba(var(--brand-rgb), 0.08) 100%);
    border: 1px solid rgba(var(--brand-rgb), 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.tag-cloud::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-shine);
    background-size: 200% 100%;
    animation: shine-slide 3s linear infinite;
}

.tag-cloud::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.tag-cloud-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--content-high);
    text-align: center;
    position: relative;
    z-index: 1;
}

.tag-cloud-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 11px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-full);
    color: var(--content-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--ease-bounce);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.tag-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.25), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.tag-item:hover::before {
    transform: translateX(100%);
}

.tag-item:hover {
    background: var(--grad-brand);
    border-color: var(--brand-vivid);
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--glow-lg);
    color: var(--content-high);
}

.tag-item.tag-sm {
    font-size: 12px;
    padding: 8px 18px;
}

.tag-item.tag-lg {
    font-size: 15px;
    padding: 13px 28px;
    font-weight: 600;
    border-width: 2px;
}

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

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

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

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

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

.text-glow-animation {
    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); }
}

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

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

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

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

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

.generation-notice h2::after {
    display: none;
}

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

.progress-fill {
    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;
    }
    
    .main {
        padding-top: 100px;
    }
    
    .header-inner {
        height: 80px;
    }
    
    .main-nav,
    .nav-overlay {
        top: 80px;
        height: calc(100vh - 80px);
    }
    
    .logo {
        height: 45px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-banner {
        padding: var(--space-lg);
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
    
    .stat-value {
        font-size: 34px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .slot-card {
        padding: var(--space-sm);
    }
    
    .slot-card img,
    .slot-card .slot-image {
        height: 140px;
    }
    
    .slot-card h4 {
        font-size: 13px;
    }
    
    .cta-block {
        padding: var(--space-xl);
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .tag-cloud-container {
        gap: 8px;
    }
    
    .tag-item {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .bonus-popup {
        bottom: var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
        width: auto;
        transform: translateX(0) translateY(300%);
    }
    
    .bonus-popup.show {
        transform: translateX(0) translateY(0);
    }
    
    .popup-bonus {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 20px;
        --space-xl: 24px;
    }
    
    body {
        font-size: 14px;
    }
    
    .main {
        padding-top: 90px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-badge {
        font-size: 10px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .slots-grid {
        gap: var(--space-xs);
    }
    
    .slot-card img,
    .slot-card .slot-image {
        height: 100px;
    }
    
    .slot-card h4 {
        font-size: 11px;
    }
    
    .slot-card .slot-rtp {
        font-size: 10px;
    }
    
    .tag-item {
        padding: 7px 14px;
        font-size: 11px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .tag-item,
    .footer-nav-link,
    .nav-link,
    .slot-card {
        min-height: 48px;
    }
    
    .btn:hover,
    .tag-item:hover,
    .footer-nav-link:hover,
    .slot-card: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;
    }
    
    .float-animation,
    .pulse-glow,
    .text-glow-animation {
        animation: none;
    }
}

/* Баннеры выигрышей справа (только для страницы слотов) */
.win-notifications {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
    pointer-events: none;
}

.win-notification {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.95) 0%, rgba(var(--surface-rgb), 0.95) 100%);
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--glow-md), var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: auto;
    animation: slideInRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.win-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.win-notification.slide-up {
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.win-notification-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--brand-vivid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.win-notification-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.win-notification-player {
    font-size: 0.95rem;
    color: var(--content-high);
    font-weight: 600;
    margin-bottom: 4px;
}

.win-notification-amount {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 4px;
}

.win-notification-game {
    font-size: 0.85rem;
    color: var(--content-dim);
}

.win-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--content-main);
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 2;
}

.win-notification-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

@media (max-width: 1024px) {
    .win-notifications {
        right: 10px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .win-notifications {
        display: none;
    }
}

/* Кнопка скролла вверх (слева внизу) */
.scroll-to-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-vivid) 100%);
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-fixed);
    box-shadow: var(--glow-md), var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--glow-lg), var(--shadow-xl);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top-icon {
    font-size: 24px;
    color: var(--content-high);
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 48px;
        height: 48px;
        left: 16px;
        bottom: 16px;
    }
    
    .scroll-to-top-icon {
        font-size: 20px;
    }
}

/* Print */
@media print {
    .header,
    .nav-overlay,
    .bonus-popup,
    .background-effects,
    .site-footer,
    .tag-cloud,
    .cta-block {
        display: none !important;
    }
    
    .main {
        padding-top: 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
