:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a73e8;
            --primary-purple: #6c40c9;
            --accent-cyan: #00d4ff;
            --accent-orange: #ff6b35;
            --text-light: #f8f9fa;
            --text-muted: #adb5bd;
            --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            --gradient-dark: linear-gradient(to right, #0c1020, #1a1e2e);
        }
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-light);
            background: var(--primary-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--accent-cyan);
            border-radius: 2px;
        }
        .bg-gradient-dark {
            background: var(--gradient-dark);
        }
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
        }
        .btn-outline-light {
            border: 2px solid rgba(255,255,255,0.2);
            padding: 10px 28px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            border-color: var(--accent-cyan);
            background-color: rgba(0, 212, 255, 0.05);
        }
        .hero-section {
            min-height: 100vh;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 23, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-cyan);
            margin-bottom: 1rem;
        }
        .card-game {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            height: 100%;
        }
        .card-game:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--primary-blue);
        }
        .card-img-top {
            border-radius: 15px 15px 0 0;
            height: 200px;
            object-fit: cover;
        }
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: rgba(26, 115, 232, 0.2);
            color: var(--accent-cyan);
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .navbar {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }
        footer {
            background: #080b13;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        .form-control {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-light);
            border-radius: 8px;
            padding: 12px 15px;
        }
        .form-control:focus {
            background: rgba(255,255,255,0.1);
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.25);
            color: var(--text-light);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 2px solid var(--primary-blue);
            margin-left: 15px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent-cyan);
            border: 3px solid var(--primary-dark);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .hero-section {
                min-height: 80vh;
            }
        }
