:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5fff;
            --accent-purple: #7b42ff;
            --accent-cyan: #00e0ff;
            --light-bg: #121826;
            --text-light: #f0f5ff;
            --text-gray: #b0bac9;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #151f33 50%, var(--primary-dark) 100%);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
            border-radius: 2px;
        }
        .navbar {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            min-height: 100vh;
            padding-top: 100px;
            background: radial-gradient(ellipse at 50% 30%, rgba(26, 95, 255, 0.15) 0%, transparent 60%);
            position: relative;
            overflow: hidden;
        }
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%23121a2e" d="M0 0h1000v1000H0z"/><g fill="%231a2e4a" opacity="0.4"><circle cx="500" cy="500" r="300"/><circle cx="200" cy="200" r="150"/><circle cx="800" cy="700" r="100"/></g></svg>');
            z-index: -1;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--text-light), var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 95, 255, 0.3);
        }
        .card-game {
            background: rgba(18, 24, 38, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .card-game:hover {
            transform: translateY(-10px);
            border-color: var(--primary-blue);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.3rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(26, 95, 255, 0.1);
            color: var(--accent-cyan);
            border-color: var(--primary-blue);
            transform: translateY(-2px);
        }
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 3rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-blue);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 15px;
            width: 2px;
            height: calc(100% + 2rem);
            background: rgba(26, 95, 255, 0.3);
        }
        .timeline-item:last-child:after {
            display: none;
        }
        .team-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }
        .team-card:hover {
            background: rgba(26, 95, 255, 0.1);
            transform: translateY(-5px);
        }
        .team-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        footer {
            background-color: #080c15;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.2s;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
