:root {
            --primary-dark: #0a192f;
            --primary-blue: #1e4d8c;
            --accent-teal: #64ffda;
            --accent-light: #ccd6f6;
            --neutral-gray: #8892b0;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--accent-light);
            background-color: var(--primary-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            padding: 1.2rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            color: var(--accent-teal) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--accent-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-teal) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-teal);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #112240 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.1;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-title {
            color: var(--accent-teal);
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-teal);
        }
        .card-custom {
            background: rgba(17, 34, 64, 0.7);
            border: 1px solid rgba(100, 255, 218, 0.1);
            border-radius: 10px;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            overflow: hidden;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(100, 255, 218, 0.15);
            border-color: rgba(100, 255, 218, 0.3);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
        }
        .btn-primary-custom {
            background-color: transparent;
            color: var(--accent-teal);
            border: 1px solid var(--accent-teal);
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-primary-custom:hover {
            background-color: rgba(100, 255, 218, 0.1);
            color: var(--accent-teal);
            transform: translateY(-3px);
        }
        .game-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        .game-card img {
            transition: transform 0.5s;
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 25, 47, 0.9));
            padding: 2rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s;
        }
        .game-card:hover .game-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-teal);
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        .contact-form input,
        .contact-form textarea {
            background-color: rgba(17, 34, 64, 0.7);
            border: 1px solid rgba(100, 255, 218, 0.2);
            color: var(--accent-light);
            padding: 0.8rem;
            border-radius: 5px;
            margin-bottom: 1.5rem;
            width: 100%;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.25rem rgba(100, 255, 218, 0.25);
        }
        .flink {
            display: inline-block;
            color: var(--neutral-gray);
            text-decoration: none;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border: 1px solid rgba(136, 146, 176, 0.3);
            border-radius: 5px;
            transition: all 0.3s;
        }
        .flink:hover {
            color: var(--accent-teal);
            border-color: var(--accent-teal);
            transform: translateY(-3px);
        }
        footer {
            background-color: #0a1525;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(136, 146, 176, 0.1);
            border-radius: 50%;
            color: var(--accent-light);
            margin-right: 1rem;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--accent-teal);
            color: var(--primary-dark);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-nav {
                text-align: center;
                background-color: rgba(10, 25, 47, 0.98);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            .game-card {
                margin-bottom: 1.5rem;
            }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-teal);
            display: block;
        }
        .progress-custom {
            height: 8px;
            background-color: rgba(136, 146, 176, 0.2);
            border-radius: 4px;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        .progress-bar-custom {
            background-color: var(--accent-teal);
            height: 100%;
            border-radius: 4px;
        }
