:root {
            --primary-color: #2e0b6e;
            --primary-color-dark: #1a0650;
            --secondary-color: #ff8800;
            --accent-color: #35afe3;
            --text-color: #f1f1f1;
            --bg-color: #0d0723;
            --card-bg: rgba(30, 18, 80, 0.85);
            --gradient-bg: linear-gradient(135deg, #1a0650 0%, #2e0b6e 60%, #3d0f89 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-size: 16px;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .header {
            background: var(--gradient-bg);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 45px;
        }
        
        .nav-desktop {
            display: flex;
        }
        
        .nav-item {
            margin-left: 25px;
            font-weight: 600;
            position: relative;
        }
        
        .nav-item:hover {
            color: var(--secondary-color);
        }
        
        .nav-mobile, .menu-toggle {
            display: none;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            color: #fff;
        }
        
        .btn-primary:hover {
            background-color: #ff9911;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary-color);
            color: #fff;
            transform: translateY(-2px);
        }
        
        .header-buttons {
            display: flex;
            gap: 15px;
        }
        
        .hero {
            position: relative;
            padding: 80px 0;
            background: url('/img/hero-bg.jpg') no-repeat center center;
            background-size: cover;
            text-align: center;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, var(--bg-color) 0%, rgba(13, 7, 35, 0.7) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ffffff, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .bonuses {
            padding: 60px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .bonus-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .bonus-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .bonus-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .bonus-image {
            height: 180px;
            overflow: hidden;
        }
        
        .bonus-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .bonus-card:hover .bonus-image img {
            transform: scale(1.05);
        }
        
        .bonus-content {
            padding: 20px;
        }
        
        .bonus-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .bonus-description {
            margin-bottom: 20px;
            font-size: 0.95rem;
            opacity: 0.85;
        }
        
        .games {
            padding: 60px 0;
            background-color: rgba(15, 8, 40, 0.7);
        }
        
        .games-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .category-btn {
            padding: 10px 20px;
            background: rgba(30, 18, 80, 0.6);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .category-btn:hover, .category-btn.active {
            background-color: var(--secondary-color);
            color: #fff;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .game-image {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        
        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .game-card:hover .game-image img {
            transform: scale(1.1);
        }
        
        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .game-card:hover .game-overlay {
            opacity: 1;
        }
        
        .game-title {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .play-btn {
            padding: 8px 20px;
            background-color: var(--secondary-color);
            color: #fff;
            border-radius: 20px;
            font-weight: 600;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .game-card:hover .play-btn {
            transform: translateY(0);
            opacity: 1;
        }
        
        .advantages {
            padding: 70px 0;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 25px;
            background: var(--card-bg);
            border-radius: 15px;
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .advantage-item:hover {
            transform: translateY(-10px);
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .advantage-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--accent-color);
        }
        
        .advantage-description {
            font-size: 0.95rem;
            opacity: 0.85;
        }
        
        .cta {
            padding: 80px 0;
            background: url('/img/cta-bg.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            text-align: center;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, rgba(13, 7, 35, 0.9) 0%, rgba(46, 11, 110, 0.8) 100%);
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .footer {
            background: var(--primary-color-dark);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
        }
        
        .footer-link {
            margin-bottom: 10px;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-link:hover {
            opacity: 1;
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        .seo-text {
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        @media (max-width: 992px) {
            .nav-desktop, .header-buttons {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 30px;
                height: 20px;
                cursor: pointer;
                z-index: 200;
            }
            
            .menu-toggle span {
                display: block;
                width: 100%;
                height: 3px;
                background-color: var(--text-color);
                transition: all 0.3s ease;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .nav-mobile {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--primary-color);
                padding: 80px 20px 40px;
                transform: translateX(-100%);
                transition: transform 0.4s ease;
                z-index: 100;
            }
            
            .nav-mobile.active {
                transform: translateX(0);
            }
            
            .mobile-nav-item {
                padding: 15px 0;
                font-size: 1.2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .mobile-buttons {
                margin-top: 30px;
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .mobile-buttons .btn {
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .bonus-cards, .games-grid, .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animated {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--primary-color-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #ff9911;
        }