/* ===== ПРЕМИУМ ЗОЛОТОЙ СТИЛЬ ===== */
/* Роскошь, элегантность, золото, бриллианты */

/* CSS Variables - Премиум палитра */
:root {
    /* Основные цвета - золото и роскошь */
    --primary-color: #ffd700;           /* Золото */
    --secondary-color: #b8860b;         /* Темное золото */
    --accent-color: #ffb347;            /* Персиковое золото */
    --success-color: #32cd32;           /* Лайм зеленый */
    --danger-color: #dc143c;            /* Малиновый */
    --warning-color: #ffa500;           /* Оранжевый */
    
    /* Фоновые цвета */
    --bg-primary: #1a1a2e;             /* Темно-синий */
    --bg-secondary: #16213e;            /* Темно-синий карточки */
    --bg-card: #0f3460;                 /* Синий карточки */
    --bg-luxury: rgba(255, 215, 0, 0.05); /* Прозрачное золото */
    
    /* Текстовые цвета */
    --text-primary: #ffffff;            /* Белый */
    --text-secondary: #e6e6fa;          /* Лавандовый */
    --text-muted: #b0c4de;              /* Светло-стальной синий */
    --text-light: #ffffff;              /* Белый */
    --text-gold: #ffd700;               /* Золотой */
    
    /* Границы и тени */
    --border-color: #4682b4;            /* Стальной синий */
    --border-gold: #ffd700;             /* Золотая граница */
    --shadow-soft: 0 2px 8px rgba(255, 215, 0, 0.2);
    --shadow-card: 0 4px 12px rgba(255, 215, 0, 0.3);
    --shadow-luxury: 0 8px 24px rgba(255, 215, 0, 0.4);
    --glow-primary: 0 0 20px rgba(255, 215, 0, 0.6);
    --glow-secondary: 0 0 20px rgba(184, 134, 11, 0.6);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-luxury: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #b8860b 100%);
    --gradient-dark: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    --gradient-gold: linear-gradient(45deg, #ffd700, #ffb347, #b8860b, #daa520);
    
    /* Размеры и отступы */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Радиусы скругления - элегантные */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-round: 50px;
    
    /* Переходы */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-luxury: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Размеры */
    --header-height: 80px;
    --container-max-width: 1200px;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    max-width: 100% !important;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    overflow-x: hidden !important;
    max-width: 100% !important;
    word-wrap: break-word;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    max-width: 100% !important;
}

/* ===== ПОПАПЫ И МОДАЛЬНЫЕ ОКНА ===== */

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: var(--spacing-md);
}

.age-content {
    background: var(--gradient-dark);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--glow-primary);
    position: relative;
    overflow: hidden;
}

.age-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0.1;
    z-index: 1;
}

.age-content > * {
    position: relative;
    z-index: 2;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.age-content h2 {
    color: var(--text-gold);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: var(--glow-primary);
}

.age-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.age-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xl);
}

.age-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.age-buttons .btn {
    min-width: 150px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--border-gold);
    padding: var(--spacing-lg);
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.3);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-content h4 {
    color: var(--text-gold);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 5px var(--primary-color);
}

.cookie-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.cookie-link:hover {
    color: var(--text-gold);
    text-shadow: 0 0 5px var(--primary-color);
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-primary);
    z-index: 10001;
    font-weight: 600;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    max-width: 300px;
    word-wrap: break-word;
}

.notification.show {
    transform: translateX(0);
}

/* ===== ХЕДЕР ===== */
.main-header {
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-gold);
    text-decoration: none;
    margin: 0;
    text-shadow: var(--glow-primary);
    animation: goldPulse 3s ease-in-out infinite alternate;
}

.free-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-round);
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: var(--glow-primary);
    animation: luxuryGlow 2s infinite;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-luxury);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-gold);
    border-color: var(--border-gold);
    box-shadow: var(--glow-primary);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: 1px solid var(--border-gold);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-luxury);
}

.mobile-menu-toggle:hover {
    box-shadow: var(--glow-primary);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
    box-shadow: 0 0 5px var(--primary-color);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    padding: var(--spacing-md);
}

.mobile-nav-menu li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    display: block;
    transition: all var(--transition-luxury);
}

.mobile-nav-menu a:hover {
    color: var(--text-gold);
    border-color: var(--border-gold);
    box-shadow: var(--glow-primary);
}

/* ===== УНИКАЛЬНАЯ ПРЕМИУМ HERO СЕКЦИЯ ===== */
.hero {
    padding: calc(var(--header-height) + var(--spacing-lg)) 0 var(--spacing-lg);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    background-attachment: scroll;
    margin-top: 0;
}

/* HIMMELSPIEL УНИКАЛЬНЫЕ СТИЛИ */
.himmel-hero {
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #16213e 75%, 
        #1a1a2e 100%);
    background-size: 400% 400%;
    animation: luxuryGradient 15s ease infinite;
}

@keyframes luxuryGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Золотые частицы */
.golden-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: floatParticle 8s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { left: 60%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; animation-duration: 7s; }
.particle:nth-child(7) { left: 80%; animation-delay: 6s; animation-duration: 13s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; animation-duration: 9s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Роскошный оверлей */
.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 179, 71, 0.05) 30%, 
        transparent 70%);
    z-index: 1;
    animation: luxuryPulse 6s ease-in-out infinite;
}

@keyframes luxuryPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Контент */
.himmel-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* VIP Badge */
.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--gradient-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-round);
    border: 2px solid var(--border-gold);
    box-shadow: var(--glow-primary);
    margin-bottom: var(--spacing-md);
    animation: vipGlow 3s ease-in-out infinite;
}

@keyframes vipGlow {
    0%, 100% { box-shadow: var(--glow-primary); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4); }
}

.crown-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px var(--primary-color));
    animation: crownFloat 2s ease-in-out infinite alternate;
}

@keyframes crownFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-3px); }
}

.vip-text {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Заголовок */
.himmel-title {
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    color: var(--text-gold);
    text-shadow: 
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color),
        0 0 60px var(--primary-color);
    margin-bottom: 0.3rem;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 20px var(--primary-color),
            0 0 40px var(--primary-color);
    }
    50% { 
        text-shadow: 
            0 0 30px var(--primary-color),
            0 0 60px var(--primary-color),
            0 0 90px var(--primary-color);
    }
}

.title-subtitle {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: var(--accent-color);
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}

/* Описание */
.hero-description {
    margin-bottom: var(--spacing-md);
}

.luxury-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Премиум статистика */
.premium-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: bold;
    color: var(--text-gold);
    text-shadow: 0 0 15px var(--primary-color);
    margin-bottom: 0.15rem;
    animation: statPulse 3s ease-in-out infinite;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
    animation: diamondSpin 4s linear infinite;
}

@keyframes diamondSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Роскошные кнопки */
.luxury-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-luxury {
    position: relative;
    min-width: 180px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-luxury);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-luxury:hover .btn-glow {
    left: 100%;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-main {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 300;
}

.btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--glow-primary),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Премиум гарантии */
.premium-guarantees {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-luxury);
}

.guarantee-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.guarantee-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.guarantee-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Декоративные элементы */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.deco-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: decoFloat 6s ease-in-out infinite;
}

.deco-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.deco-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.deco-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.deco-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes decoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets../images/hero_desktop_bg.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0.1;
    z-index: 1;
    animation: luxuryFlow 15s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: bold;
    color: var(--text-gold);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: var(--glow-primary);
    animation: goldPulse 4s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-feature {
    background: rgba(15, 52, 96, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.hero-feature:hover::before {
    left: 100%;
}

.hero-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--glow-primary);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.feature-content h3 {
    color: var(--text-gold);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 5px var(--primary-color);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-luxury);
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gold);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px currentColor);
}

/* ===== СЕКЦИИ ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-gold);
    margin-bottom: var(--spacing-sm);
    text-shadow: var(--glow-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ИГРЫ ===== */
.games-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets../images/section_bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.game-card {
    background: rgba(15, 52, 96, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-luxury);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-luxury);
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
}

.game-card.featured {
    border-color: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

.game-ribbon {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-round);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: var(--glow-primary);
}

.game-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    z-index: 2;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-luxury);
    filter: brightness(0.9);
}

.game-card:hover .game-image img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.game-info {
    padding: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.game-title {
    color: var(--text-gold);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 5px var(--primary-color);
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.game-tags {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-round);
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid;
}

.tag.free {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
    box-shadow: 0 0 10px var(--success-color);
}

.tag.premium {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.tag.vip {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.tag.luxury {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.game-stats {
    margin-bottom: var(--spacing-md);
}

.stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stat-value {
    color: var(--text-gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 0 5px var(--primary-color);
}

.play-button {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--border-gold);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.play-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px currentColor);
}

/* ===== АНИМАЦИИ ===== */
@keyframes goldPulse {
    0% { text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color); }
    100% { text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

@keyframes luxuryGlow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

@keyframes luxuryFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== ЗАЩИТА ОТ ГОРИЗОНТАЛЬНОГО СКРОЛЛА ===== */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

* {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word;
}

.container, .hero-content, .section-header {
    max-width: 100% !important;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex !important;
    }
    
    .desktop-menu {
        display: none !important;
    }
    
    /* Мобильный хедер */
    .header-content {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-section {
        flex-wrap: wrap;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .logo {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .free-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        white-space: nowrap;
    }
    
    .hero {
        padding: calc(var(--header-height) + var(--spacing-md)) 0 var(--spacing-md) !important;
        min-height: 80vh !important;
        max-height: 100vh !important;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .notification {
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Очень маленькие экраны - еще более компактный хедер */
    .header-content {
        padding: 0 var(--spacing-xs);
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .free-badge {
        font-size: 0.55rem;
        padding: 3px 6px;
    }
    
    .mobile-menu-toggle {
        padding: var(--spacing-xs);
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Премиум hero адаптивность */
    .vip-badge {
        padding: 4px var(--spacing-sm);
        gap: 4px;
        margin-bottom: var(--spacing-sm);
    }
    
    .vip-text {
        font-size: 0.65rem;
    }
    
    .himmel-title {
        margin-bottom: var(--spacing-sm);
    }
    
    .title-line {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .title-main {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 0.2rem;
    }
    
    .title-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-description {
        margin-bottom: var(--spacing-sm);
    }
    
    .luxury-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .premium-stats {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .luxury-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .btn-luxury {
        min-width: 240px;
        width: 100%;
        max-width: 280px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .btn-main {
        font-size: 1rem;
    }
    
    .btn-sub {
        font-size: 0.75rem;
    }
    
    .premium-guarantees {
        gap: var(--spacing-xs);
    }
    
    .guarantee-item {
        padding: 6px var(--spacing-sm);
    }
    
    .guarantee-text {
        font-size: 0.75rem;
    }
    
    .guarantee-icon {
        font-size: 1rem;
    }
    
    .deco-element {
        font-size: 1.2rem;
    }
    
    .age-content {
        padding: var(--spacing-lg);
        margin: var(--spacing-md);
    }
    
    .age-content h2 {
        font-size: 1.6rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-buttons .btn {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ СЕКЦИИ ===== */

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(15, 52, 96, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-luxury);
    z-index: 1;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
}

.benefit-card.featured {
    border-color: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 15px var(--primary-color));
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    color: var(--text-gold);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 8px var(--primary-color);
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 52, 96, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-luxury);
}

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

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question h4 {
    color: var(--text-gold);
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 0 0 8px var(--primary-color);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: bold;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(15, 52, 96, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-luxury);
    z-index: 1;
}

.review-card:hover::before {
    opacity: 0.1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
}

.review-card.featured {
    border-color: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.review-avatar {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.review-info h4 {
    color: var(--text-gold);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 8px var(--primary-color);
}

.review-rating {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px var(--warning-color));
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Leaderboard Section */
.leaderboard-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(15, 52, 96, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-luxury);
    z-index: 1;
}

.leader-card:hover::before {
    opacity: 0.1;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
}

.leader-card.gold {
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.leader-card.silver {
    border-color: #c0c0c0;
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.5);
}

.leader-card.bronze {
    border-color: #cd7f32;
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.5);
}

.leader-rank {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px currentColor);
    position: relative;
    z-index: 2;
}

.leader-info h4 {
    color: var(--text-gold);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 8px var(--primary-color);
    position: relative;
    z-index: 2;
}

.leader-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
    border-top: 3px solid var(--border-gold);
    position: relative;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--danger-color);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 15px var(--danger-color);
}

.disclaimer-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.disclaimer-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.disclaimer-point {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--danger-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
}

.point-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px var(--danger-color));
}

.disclaimer-footer {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-gold);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--text-gold);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 8px var(--primary-color);
}

.footer-section h4 {
    color: var(--text-gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 8px var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-luxury);
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: var(--text-gold);
    text-shadow: 0 0 8px var(--primary-color);
}

.compliance-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.compliance-logo {
    height: 45px;
    width: auto;
    background: #ffffff;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition-luxury);
}

.compliance-logo:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.compliance-logo.no-bg {
    background: transparent !important;
    padding: 10px 6px !important;
}

.age-restriction {
    color: var(--danger-color);
    font-weight: bold;
    text-shadow: 0 0 8px var(--danger-color);
    font-size: 1.05rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
    font-size: 1.05rem;
}

.legal-notice {
    font-size: 0.95rem;
    color: var(--text-muted);
}
