:root {
            --afi-blue: #0066b3;
            --afi-orange: #ff671f;
            --afi-green: #046a38;
            --afi-white: #ffffff;
            --afi-light-gray: #f8f9fa;
            --afi-dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .afi-bg-primary {
            background-color: var(--afi-blue) !important;
        }
        .afi-text-primary {
            color: var(--afi-blue) !important;
        }
        .afi-bg-secondary {
            background-color: var(--afi-orange) !important;
        }
        .afi-text-secondary {
            color: var(--afi-orange) !important;
        }
        .afi-bg-accent {
            background-color: var(--afi-green) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 102, 179, 0.9), rgba(4, 106, 56, 0.8)), url('https://images.unsplash.com/photo-1552674605-db6ffd8facb5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--afi-orange);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .athlete-card img {
            height: 250px;
            object-fit: cover;
            object-position: top;
        }
        .fixtures-table {
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .fixtures-table thead th {
            background-color: var(--afi-blue);
            color: white;
            border: none;
            padding: 15px;
        }
        .fixtures-table tbody tr {
            transition: background-color 0.2s ease;
        }
        .fixtures-table tbody tr:hover {
            background-color: rgba(0, 102, 179, 0.05);
        }
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding-top: 3rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer a:hover {
            color: var(--afi-orange);
        }
        .friendlink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .friendlink:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .flink {
            color: #4da6ff;
            font-weight: 600;
        }
        .news-card {
            border-left: 4px solid var(--afi-orange);
        }
        .stats-counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--afi-blue);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stats-counter {
                font-size: 2rem;
            }
        }
        .breadcrumb {
            background-color: transparent;
            padding-left: 0;
        }
        .breadcrumb-item.active {
            color: var(--afi-orange);
        }
        .btn-afi {
            background-color: var(--afi-blue);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .btn-afi:hover {
            background-color: #005299;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-afi-secondary {
            background-color: var(--afi-orange);
            color: white;
        }
        .btn-afi-secondary:hover {
            background-color: #e55c1a;
            color: white;
        }
        .form-control:focus {
            border-color: var(--afi-blue);
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 179, 0.25);
        }
        .nav-pills .nav-link.active {
            background-color: var(--afi-blue);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 102, 179, 0.1);
            color: var(--afi-blue);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 179, 0.25);
        }
