/* =====================================================
   ATOM Casino - Main Styles
   Тёмная тема с фиолетово-синими градиентами
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --bg-card-hover: rgba(25, 25, 45, 0.9);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Accent Colors */
    --accent-violet: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-indigo: #6366f1;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    
    /* Effects */
    --glow-violet: 0 0 30px rgba(139, 92, 246, 0.5);
    --glow-blue: 0 0 30px rgba(59, 130, 246, 0.5);
    
    /* Borders */
    --border-subtle: rgba(139, 92, 246, 0.2);
    --border-accent: rgba(139, 92, 246, 0.5);
    
    /* Typography */
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--glow-violet);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-accent);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.btn-ghost {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--border-accent);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-xl {
    padding: 22px 48px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-icon {
    flex-shrink: 0;
}

/* SVG Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.hero-badge .icon,
.bonus-badge .icon {
    margin-right: 4px;
}

svg.btn-icon {
    width: 18px;
    height: 18px;
}

/* =====================================================
   Header
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 8, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-atom {
    position: relative;
    width: 40px;
    height: 40px;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--glow-violet);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 20px;
    height: 20px;
    animation: orbit-rotate 3s linear infinite;
}

.orbit-2 {
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%) rotate(60deg);
    animation: orbit-rotate 4s linear infinite reverse;
}

.orbit-3 {
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: orbit-rotate 5s linear infinite;
}

.electron {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;

    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        var(--bg-dark);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 540px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual - Atom Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-atom {
    position: relative;
    width: 350px;
    height: 350px;
}

.atom-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.6),
        0 0 120px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.core-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.atom-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(139, 92, 246, 0.4);
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
    animation: ring-spin-1 8s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(59, 130, 246, 0.4);
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(60deg);
    animation: ring-spin-2 10s linear infinite reverse;
}

.ring-3 {
    width: 320px;
    height: 320px;
    border-color: rgba(236, 72, 153, 0.3);
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(120deg);
    animation: ring-spin-3 12s linear infinite;
}

.atom-ring .particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Atom Decorations */
.atom-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    opacity: 0.3;
}

.atom-1 {
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.atom-2 {
    bottom: -150px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* =====================================================
   Section Styles
   ===================================================== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-violet);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   Features Section
   ===================================================== */
.features {
    background: 
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   Games Section
   ===================================================== */
.games {
    background: var(--bg-darker);
}

.games-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.game-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--glow-violet);
}

.game-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: 16px;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.game-provider {
    font-size: 13px;
    color: var(--text-muted);
}

.games-action {
    text-align: center;
    margin-top: 50px;
}

/* =====================================================
   Bonuses Section
   ===================================================== */
.bonuses {
    background: 
        radial-gradient(ellipse 50% 30% at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        var(--bg-dark);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.bonus-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.bonus-card:hover {
    border-color: var(--border-accent);
}

.bonus-welcome {
    grid-column: 1;
    grid-row: 1 / 3;
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%),
        var(--bg-card);
    border-color: var(--border-accent);
}

.bonus-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.bonus-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.bonus-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.bonus-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bonus-list {
    margin-bottom: 24px;
}

.bonus-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-violet);
}

/* =====================================================
   Mirror Section
   ===================================================== */
.mirror-section {
    background: var(--bg-darker);
    overflow: hidden;
}

.mirror-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mirror-text {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.mirror-features {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.mirror-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.mirror-icon {
    color: var(--accent-violet);
    font-weight: bold;
}

.mirror-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mirror-atom {
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    border: 2px solid var(--border-accent);
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mirror-atom .reflection {
    position: absolute;
    inset: 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* =====================================================
   About Section
   ===================================================== */
.about {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.about-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.about-atom-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--glow-violet);
}

.floating-particle.p1 {
    top: 20%;
    left: 30%;
    animation: float-particle 4s ease-in-out infinite;
}

.floating-particle.p2 {
    top: 50%;
    right: 20%;
    animation: float-particle 5s ease-in-out infinite 1s;
}

.floating-particle.p3 {
    bottom: 20%;
    left: 40%;
    animation: float-particle 6s ease-in-out infinite 2s;
}

/* =====================================================
   Providers Section
   ===================================================== */
.providers {
    background: var(--bg-darker);
    padding: 60px 0;
}

.providers-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.provider-item {
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.provider-item:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item[open] {
    border-color: var(--border-accent);
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-violet);
    transition: var(--transition-normal);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        var(--bg-darker);
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-atom {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.5),
        0 0 120px rgba(139, 92, 246, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-nav a:hover {
    color: var(--text-primary);
}

.footer-contacts p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-email {
    color: var(--accent-violet);
    font-size: 14px;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy,
.footer-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }
    
    .hero-atom {
        width: 250px;
        height: 250px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-welcome {
        grid-column: 1;
        grid-row: auto;
    }
    
    .mirror-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mirror-features {
        justify-content: center;
    }
    
    .mirror-visual {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        padding: 20px;
        border-top: 1px solid var(--border-subtle);
    }
    
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 14px;
    }
    
    .btn-xl {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

