:root {
            --primary-color: #6a11cb;
            --secondary-color: #2575fc;
            --accent-color: #ff4d94;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmMDEiIGQ9Ik0xODQgMjU2QzE4NCAyNjQuOCAxNzYuOCAyNzIgMTY4IDI3Mkg2NEM1NS4xNiAyNzIgNDggMjY0LjggNDggMjU2UzU1LjE2IDI0MCA2NCAyNDBIMTY4QzE3Ni44IDI0MCAxODQgMjQ3LjIgMTg0IDI1NlpNNDMyIDMyMEgzNTJDMzQzLjIgMzIwIDMzNiAzMjcuMiAzMzYgMzM2UzM0My4yIDM1MiAzNTIgMzUySDQzMkM0NDAuOCAzNTIgNDQ4IDM0NC44IDQ0OCAzMzZTNDQwLjggMzIwIDQzMiAzMjBaTTI4OCAzNTJIMjI0QzIxNS4yIDM1MiAyMDggMzU5LjIgMjA4IDM2OFMyMTUuMiAzODQgMjI0IDM4NEgyODhDMjk2LjggMzg0IDMwNCAzNzYuOCAzMDQgMzY4UzI5Ni44IDM1MiAyODggMzUyWk0xOTIgMzg0SDE2OEMxNTkuMiAzODQgMTUyIDM5MS4yIDE1MiA0MDBDMTUyIDQwOC44IDE1OS4yIDQxNiAxNjggNDE2SDE5MkMyMDAuOCA0MTYgMjA4IDQwOC44IDIwOCA0MDBDMjA4IDM5MS4yIDIwMC44IDM4NCAxOTIgMzg0WiIvPjwvc3ZnPg==') center/contain no-repeat;
            opacity: 0.03;
            animation: float 20s infinite linear;
        }
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }
        .game-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: white;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .game-card img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: var(--light-color);
            border-radius: 25px;
            text-decoration: none;
            color: var(--dark-color);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .team-member {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s ease;
        }
        .team-member:hover {
            transform: translateY(-10px);
        }
        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .contact-form input, .contact-form textarea {
            border-radius: 10px;
            padding: 12px 15px;
            border: 2px solid #eaeaea;
            transition: all 0.3s ease;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
        }
        .btn-primary {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
            }
            .stats-number {
                font-size: 2.5rem;
            }
            .section-title::after {
                left: 0;
                transform: none;
            }
        }
