:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5fff;
            --primary-cyan: #00d4ff;
            --accent-purple: #8a2be2;
            --accent-green: #00ff9d;
            --text-light: #f8f9fa;
            --text-muted: #adb5bd;
            --card-bg: rgba(26, 31, 45, 0.8);
            --gradient-main: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.7;
        }
        .gradient-text {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gradient-bg {
            background: var(--gradient-main);
        }
        .section-padding {
            padding: 100px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
        }
        .hero-section {
            min-height: 100vh;
            background: radial-gradient(circle at 30% 20%, rgba(26, 95, 255, 0.15) 0%, transparent 50%), 
                        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary-cyan);
            filter: blur(100px);
            opacity: 0.15;
            top: -150px;
            left: -150px;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--accent-purple);
            filter: blur(100px);
            opacity: 0.1;
            bottom: -150px;
            right: -150px;
        }
        .nav-shadow {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            background: rgba(10, 14, 23, 0.9);
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            overflow: hidden;
        }
        .game-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-cyan);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(26, 95, 255, 0.2);
            color: var(--primary-cyan);
            border-color: var(--primary-cyan);
            transform: translateY(-3px);
        }
        .team-member {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: rgba(26, 31, 45, 0.6);
            transition: all 0.3s ease;
        }
        .team-member:hover {
            background: rgba(26, 31, 45, 0.9);
            transform: translateY(-10px);
        }
        .contact-form input,
        .contact-form textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-cyan);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }
        .btn-glow {
            background: var(--gradient-main);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(26, 95, 255, 0.4);
        }
        .btn-glow:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(26, 95, 255, 0.6);
            color: white;
        }
        .btn-outline-glow {
            background: transparent;
            color: var(--primary-cyan);
            border: 2px solid var(--primary-cyan);
            padding: 12px 30px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-outline-glow:hover {
            background: rgba(0, 212, 255, 0.1);
            color: var(--text-light);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
            transform: translateY(-3px);
        }
        .stat-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: rgba(26, 31, 45, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .stat-box h3 {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(0, 212, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        footer {
            background: rgba(5, 8, 15, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--primary-cyan);
        }
        .floating-element {
            animation: floating 6s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
