:root {
            --primary-blue: #0056b3;
            --secondary-gold: #FFD700;
            --accent-red: #DC3545;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #ffffff;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 30, 60, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--accent-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icons a {
            display: inline-block;
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 42px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--primary-blue);
            transform: translateY(-5px);
        }
        .flink {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 1rem 1.5rem;
            display: inline-block;
            margin: 0.5rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--secondary-gold);
            transform: translateY(-3px);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--primary-blue);
            margin-left: 20px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--secondary-gold);
            border: 4px solid var(--primary-blue);
        }
        .player-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            padding-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        .player-card:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .player-img {
            height: 280px;
            object-fit: cover;
            width: 100%;
        }
        .player-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-blue);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            max-height: 80px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .navbar-nav {
                text-align: center;
                background: rgba(0,0,0,0.95);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
