:root {
            --afi-blue: #0055A4;
            --afi-orange: #FF671F;
            --afi-green: #046A38;
            --afi-white: #FFFFFF;
            --afi-gray: #F8F9FA;
            --afi-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--afi-dark);
            overflow-x: hidden;
        }
        .navbar-brand img {
            max-height: 70px;
            transition: transform 0.3s ease;
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        .bg-afi-gradient {
            background: linear-gradient(135deg, var(--afi-blue) 0%, var(--afi-green) 100%);
        }
        .hero-section {
            position: relative;
            background: linear-gradient(rgba(0, 85, 164, 0.85), rgba(4, 106, 56, 0.85)), url('https://images.unsplash.com/photo-1552674605-db6ffd8facb5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0;
            margin-top: 76px;
        }
        .card-hover {
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid rgba(0,0,0,0.1);
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--afi-blue), var(--afi-green));
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        .feature-item:hover .icon-box {
            transform: rotateY(180deg) scale(1.1);
        }
        .athlete-card {
            overflow: hidden;
            border-radius: 12px;
            position: relative;
        }
        .athlete-img {
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .athlete-card:hover .athlete-img {
            transform: scale(1.08);
        }
        .athlete-overlay {
            position: absolute;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            width: 100%;
            padding: 30px 20px 20px;
            color: white;
        }
        .fixture-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--afi-orange);
            color: white;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
            padding: 15px;
            max-height: 80px;
            object-fit: contain;
        }
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        .contact-info-box {
            border-left: 4px solid var(--afi-blue);
            padding-left: 20px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            border-left-color: var(--afi-orange);
            padding-left: 25px;
            background-color: rgba(0, 85, 164, 0.03);
        }
        footer {
            background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
            color: #e9ecef;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.2s ease;
            display: inline-block;
            margin-bottom: 8px;
        }
        .footer-links a:hover {
            color: var(--afi-orange);
            transform: translateX(5px);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px 10px 5px 0;
            color: #e9ecef;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .flink:hover {
            background: var(--afi-orange);
            color: white;
            transform: translateY(-3px);
            border-color: var(--afi-orange);
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                background-attachment: scroll;
            }
            .navbar-brand img {
                max-height: 50px;
            }
        }
        .news-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card .card-body {
            flex-grow: 1;
        }
        .news-date {
            font-size: 0.9rem;
            color: var(--afi-blue);
            font-weight: 600;
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--afi-blue);
            line-height: 1;
        }
        .stats-label {
            color: var(--afi-dark);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
