:root {
            --primary-color: #2a2d43;
            --secondary-color: #00c9ff;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #1a1c2b;
            --gradient-primary: linear-gradient(135deg, #2a2d43 0%, #3a3f5d 100%);
            --gradient-accent: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: #fefefe;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .hero-section {
            background: var(--gradient-primary);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            top: -50%;
            left: -50%;
            animation: float 20s linear infinite;
        }
        @keyframes float {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .nav-main {
            background: rgba(42, 45, 67, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        .nav-main.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            padding: 8px 15px !important;
            transition: all 0.3s;
            border-radius: 4px;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        .section-padding {
            padding: 80px 0;
        }
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .game-img {
            height: 220px;
            background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        .team-member {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .btn-primary-custom {
            background: var(--gradient-accent);
            border: none;
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,201,255,0.3);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            background: white;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            font-weight: 500;
            margin: 5px;
        }
        .flink:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            border-color: var(--secondary-color);
            color: var(--primary-color);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        .progress-bar {
            height: 5px;
            background: var(--gradient-accent);
            width: 0;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .section-padding {
                padding: 50px 0;
            }
            .contact-form {
                padding: 25px;
            }
        }
