:root {
            --primary: #0A2E6D;
            --secondary: #E63946;
            --accent: #2A9D8F;
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --orange: #F4A261;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #fff;
        }
        h1, h2, h3, h4, h5, .display-1, .display-2, .display-3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--primary);
        }
        .section-padding { padding: 80px 0; }
        @media (max-width: 768px) { .section-padding { padding: 50px 0; } }
        .bg-primary-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, #1E4A8F 100%);
        }
        .bg-light-accent { background-color: rgba(42, 157, 143, 0.08); }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #0A3A8A;
            border-color: #0A3A8A;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 46, 109, 0.2);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #D32F3D;
            border-color: #D32F3D;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 18px 0;
            transition: all 0.4s ease;
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .navbar-brand span { color: var(--secondary); }
        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            padding: 8px 16px !important;
            margin: 0 4px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(10, 46, 109, 0.08);
            color: var(--primary) !important;
        }
        .hero {
            background: linear-gradient(rgba(10, 46, 109, 0.85), rgba(10, 46, 109, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 160px 0 100px;
            position: relative;
        }
        @media (max-width: 992px) { .hero { padding: 130px 0 80px; } }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }
        .stat-card:hover { transform: translateY(-10px); }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 5px;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1.8rem;
        }
        .feature-card {
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .feature-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .feature-card .card-body { padding: 30px; }
        .news-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .news-card:hover { transform: translateY(-8px); }
        .news-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .badge-date {
            background-color: var(--primary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .flink {
            display: inline-block;
            padding: 12px 24px;
            margin: 8px;
            background-color: white;
            border-radius: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(10, 46, 109, 0.15);
            text-decoration: none;
        }
        .footer {
            background-color: var(--dark);
            color: #ddd;
            padding-top: 70px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 700;
        }
        .footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover { color: white; }
        .footer-links li { margin-bottom: 12px; }
        .copyright {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            margin-top: 50px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-icon {
            background-color: rgba(10, 46, 109, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            height: 400px;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .player-card {
            text-align: center;
            padding: 25px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .player-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #f0f0f0;
            margin: 0 auto 20px;
        }
        .sponsor-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        .sponsor-logo:hover { transform: scale(1.05); }
        .sponsor-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(10, 46, 109, 0.3);
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-5px);
        }
