        :root {
            --main-purple: #5928E5;
            --deep-violet: #2D1650;
            --bright-orange: #FF6B35;
            --sky-blue: #4ECDC4;
            --dark-bg: #0F0E1D;
            --card-dark: rgba(37, 33, 58, 0.8);
            --text-light: #E8E9F3;
            --text-dim: rgba(232, 233, 243, 0.7);
            --gradient-main: linear-gradient(135deg, #5928E5 0%, #2D1650 100%);
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .main-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .top-header {
            background: rgba(15, 14, 29, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .top-header.scrolled {
            background: rgba(15, 14, 29, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-logo img {
            height: 40px;
            width: auto;
        }
        
        .main-navigation {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-orange);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--bright-orange);
        }
        
        .auth-buttons {
            display: flex;
            gap: 15px;
        }
        
        .action-btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--bright-orange);
            color: white;
        }
        
        .btn-primary:hover {
            background: #FF8255;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--bright-orange);
            border: 2px solid var(--bright-orange);
        }
        
        .btn-secondary:hover {
            background: var(--bright-orange);
            color: white;
        }
        
        /* Мобильное меню */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }
        
        .toggle-line {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .mobile-menu-toggle.active .toggle-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        
        .mobile-menu-toggle.active .toggle-line:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active .toggle-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--deep-violet);
            display: flex;
            flex-direction: column;
            padding: 80px 20px 40px;
            transition: right 0.4s ease;
            z-index: 999;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-link {
            color: var(--text-light);
            text-decoration: none;
            padding: 15px 0;
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-auth-buttons {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .hero-section {
            margin-top: 80px;
            padding: 100px 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%235928E5" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,154.7C384,149,480,107,576,90.7C672,75,768,85,864,112C960,139,1056,181,1152,192C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom no-repeat;
            background-size: cover;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #FFFFFF, var(--sky-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleAppear 0.8s ease;
        }
        
        @keyframes titleAppear {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-dim);
            margin-bottom: 40px;
            animation: subtitleAppear 0.8s ease 0.2s both;
        }
        
        @keyframes subtitleAppear {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: actionsAppear 0.8s ease 0.4s both;
        }
        
        @keyframes actionsAppear {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .bonus-section {
            padding: 80px 0;
            background: rgba(45, 22, 80, 0.1);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-dim);
            margin-bottom: 50px;
        }
        
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .bonus-box {
            background: var(--card-dark);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .bonus-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-card);
        }
        
        .bonus-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .bonus-info {
            padding: 25px;
        }
        
        .bonus-name {
            font-size: 1.4rem;
            color: var(--bright-orange);
            margin-bottom: 10px;
        }
        
        .bonus-text {
            color: var(--text-dim);
            margin-bottom: 20px;
        }
        
        /* Игровая секция */
        .games-section {
            padding: 80px 0;
        }
        
        .game-categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .category-tag {
            padding: 10px 25px;
            background: rgba(89, 40, 229, 0.2);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .category-tag:hover,
        .category-tag.active {
            background: var(--bright-orange);
            color: white;
            border-color: var(--bright-orange);
        }
        
        .games-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .game-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            height: 200px;
        }
        
        .game-item:hover {
            transform: scale(1.05);
        }
        
        .game-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px 15px 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .game-item:hover .game-overlay {
            transform: translateY(0);
        }
        
        .game-name {
            color: white;
            font-weight: 600;
        }
        
        .play-now {
            background: var(--bright-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            margin-top: 8px;
            font-size: 0.9rem;
        }
        
        /* Преимущества */
        .features-section {
            padding: 80px 0;
            background: rgba(45, 22, 80, 0.1);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 20px;
            background: var(--card-dark);
            border-radius: 20px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .feature-title {
            font-size: 1.3rem;
            color: var(--sky-blue);
            margin-bottom: 15px;
        }
        
        .feature-desc {
            color: var(--text-dim);
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-main);
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }
        
        .cta-button {
            background: white;
            color: var(--main-purple);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .cta-button:hover {
            background: #f0f0f0;
        }
        
        .site-footer {
            background: var(--deep-violet);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: var(--bright-orange);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-section p {
            color: var(--text-dim);
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--bright-orange);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--bright-orange);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: var(--text-dim);
        }
        
        .seo-content {
            padding: 40px 0;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .seo-content h2 {
            color: var(--bright-orange);
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        
        .seo-content h3 {
            color: var(--sky-blue);
            font-size: 1.4rem;
            margin: 25px 0 12px;
        }
        
        .seo-content h4 {
            color: var(--text-light);
            font-size: 1.2rem;
            margin: 20px 0 10px;
        }
        
        .seo-content p {
            color: var(--text-dim);
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .seo-content ul,
        .seo-content ol {
            margin: 15px 0 15px 30px;
            color: var(--text-dim);
        }
        
        .seo-content li {
            margin-bottom: 8px;
        }
        
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin: 20px 0;
        }
        
        .city-name {
            background: rgba(89, 40, 229, 0.1);
            padding: 8px 15px;
            border-radius: 8px;
            text-align: center;
        }
        
        .faq-item {
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(89, 40, 229, 0.05);
            border-radius: 12px;
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--sky-blue);
            margin-bottom: 10px;
        }
        
        .faq-answer {
            color: var(--text-dim);
            line-height: 1.7;
        }
        
        @media (max-width: 992px) {
            .main-navigation {
                display: none;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .bonus-grid,
            .games-container {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }