:root {
            --primary-dark: #0a192f;
            --primary-blue: #1e3a8a;
            --accent-teal: #14b8a6;
            --accent-orange: #f97316;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .navbar {
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(30, 58, 138, 0.2);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
            background: linear-gradient(90deg, var(--accent-teal), #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: #cbd5e1 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(30, 58, 138, 0.3);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
            top: 10%;
            left: 5%;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #22d3ee, var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--accent-teal), #0ea5e9);
            border: none;
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(20, 184, 166, 0.4);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
            bottom: -15px;
            left: 0;
            border-radius: 3px;
        }
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-teal), #0ea5e9);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .team-member {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .team-member:hover {
            background: linear-gradient(135deg, #f8fafc, white);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        .team-img {
            width: 160px;
            height: 160px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #e2e8f0;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .team-member:hover .team-img {
            border-color: var(--accent-teal);
            transform: scale(1.05);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 400px;
            margin-bottom: 2rem;
        }
        .game-card img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .game-card:hover img {
            transform: scale(1.08);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 25, 47, 0.95), transparent);
            color: white;
            padding: 2rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .game-card:hover .game-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        footer {
            background-color: var(--primary-dark);
            color: #cbd5e1;
            padding: 4rem 0 2rem;
        }
        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-heading::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent-teal);
            bottom: 0;
            left: 0;
        }
        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        .footer-link:hover {
            color: var(--accent-teal);
            padding-left: 8px;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            color: #cbd5e1;
            text-decoration: none;
            margin: 0.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: var(--accent-teal);
            transform: translateY(-3px);
        }
        .contact-info {
            background: linear-gradient(135deg, #f1f5f9, white);
            padding: 2.5rem;
            border-radius: 15px;
            border-left: 5px solid var(--accent-teal);
        }
        .form-control {
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid #cbd5e1;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.25);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
            .navbar-nav {
                background: rgba(10, 25, 47, 0.98);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-teal);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: var(--primary-blue);
            transform: translateY(-5px);
        }
        .news-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }
        .news-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .news-date {
            background: var(--accent-teal);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            position: absolute;
            top: 1rem;
            left: 1rem;
        }
