        :root {
            --primary: #ff00ff;
            --secondary: #00f3ff;
            --accent: #ffcc00;
            --dark: #0a0a12;
            --darker: #06060c;
            --light: #ffffff;
            --success: #00ff9d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255,0,255,0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0,243,255,0.05) 0%, transparent 20%);
        }
        
        .glow-effect {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,0,255,0.1) 0%, transparent 70%);
            z-index: -2;
            pointer-events: none;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
		@keyframes pulse {
			0% {
				box-shadow: 0 0 0 0 rgba(255,0,255,0.35);
			}
			70% {
				box-shadow: 0 0 0 18px rgba(255,0,255,0);
			}
			100% {
				box-shadow: 0 0 0 0 rgba(255,0,255,0);
			}
		}

        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: rgba(10, 10, 18, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255,0,255,0.2);
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(255,0,255,0.3);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 20px rgba(255,0,255,0.5);
            text-decoration: none;
            display: inline-block;
			    position: relative;
    overflow: hidden;
    background-size: 200% 200%; /* для анимированного градиента */
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(255,0,255,0.7);
        }
        
/* Плавное "дыхание" и неоновый glow для кнопок */
.cta-animate {
    animation: ctaGlow 2.6s ease-in-out infinite, gradientMove 6s linear infinite;
}

/* Чуть более сильный эффект только для Şimdi Oyna */
.cta-animate-main {
    animation-duration: 2.2s, 5s; /* быстрее дышит и быстрее переливается градиент */
}

/* Эффект при наведении общий для всех CTA */
.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px rgba(255,0,255,0.85);
}

/* Неоновое "дыхание" */
@keyframes ctaGlow {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 15px rgba(255,0,255,0.4);
    }
    50% {
        transform: translateY(-1px) scale(1.04);
        box-shadow: 0 0 30px rgba(255,0,255,0.9), 0 0 50px rgba(0,243,255,0.6);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 15px rgba(255,0,255,0.4);
    }
}

/* Плавное движение градиента по кнопке */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );
    transform: translateX(-100%) rotate(25deg);
    opacity: 0;
    pointer-events: none;
}

/* Запуск блика при наведении */
.cta-button:hover::before {
    animation: buttonShine 0.8s ease-out;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-120%) rotate(25deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateX(260%) rotate(25deg);
        opacity: 0;
    }
}



        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 2;
            margin: 0 auto; /* Центрирование контента */
            text-align: center; /* Выравнивание текста по центру */
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255,0,255,0.3);
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #ccc;
        }
        
        .bonus-badge {
            background: linear-gradient(45deg, #ff00ff, #00f3ff);
            padding: 3px;
            border-radius: 12px;
            display: inline-block;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255,0,255,0.5);
        }
        
        .bonus-content {
            background: rgba(10, 10, 18, 0.9);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(255,0,255,0.3);
        }
        
        .bonus-content h3 {
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .bonus-content p {
            font-size: 18px;
            font-weight: 700;
            color: var(--success);
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center; /* Центрирование кнопок */
        }
        
        .secondary-button {
            background: transparent;
            color: white;
            border: 2px solid var(--secondary);
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }
        
        .secondary-button:hover {
            background: rgba(0, 243, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: rgba(10, 10, 18, 0.8);
            border: 1px solid rgba(255,0,255,0.2);
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,0,255,0.2);
            border-color: rgba(255,0,255,0.5);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .feature-card p {
            color: #ccc;
            font-size: 16px;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .game-card {
            background: rgba(10, 10, 18, 0.8);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255,0,255,0.2);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .game-card:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px rgba(255,0,255,0.3);
            border-color: rgba(255,0,255,0.5);
        }
        
        .game-image {
            height: 180px;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .game-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,0,255,0.1) 0%, transparent 70%);
        }
        
        .game-icon {
            font-size: 60px;
            color: white;
            text-shadow: 0 0 15px rgba(255,0,255,0.5);
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--light);
            white-space: nowrap; /* Запрет переноса строки для названий игр */
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .game-info p {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .play-button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
        }
        
        .play-button:hover {
            transform: scale(1.05);
        }
        
        .article-section {
            background: rgba(6, 6, 12, 0.9);
            border-top: 1px solid rgba(255,0,255,0.2);
            border-bottom: 1px solid rgba(255,0,255,0.2);
        }
        
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .article-content h2 {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .article-content p {
            margin-bottom: 20px;
            font-size: 17px;
            color: #e0e0e0;
        }
        
        .article-content p:first-child::first-letter {
            font-size: 48px;
            font-weight: 800;
            float: left;
            line-height: 0.8;
            margin-right: 10px;
            color: var(--secondary);
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .highlight {
            background: linear-gradient(120deg, rgba(255,0,255,0.2), rgba(0,243,255,0.2));
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
            border-radius: 15px;
            background: rgba(10, 10, 18, 0.8);
            border: 1px solid rgba(255,0,255,0.2);
        }
        
        .stat-number {
            font-size: 40px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--light);
        }
        
        .footer {
            background: rgba(6, 6, 12, 0.95);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,0,255,0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* Фиксированное количество колонок */
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,0,255,0.1);
            color: #888;
            font-size: 14px;
        }
        
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr); /* На планшетах 2 колонки */
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr; /* На мобильных 1 колонка */
            }
        }
        
        .neon-text {
            text-shadow: 0 0 10px rgba(255,0,255,0.7),
                         0 0 20px rgba(255,0,255,0.5),
                         0 0 30px rgba(255,0,255,0.3);
        }
        
        /* Дополнительные стили для улучшения адаптивности футера */
        @media (min-width: 1201px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }