:root {
            --bfc-blue: #0051ba;
            --bfc-gold: #fbb800;
            --bfc-dark: #1a1a1a;
            --bfc-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--bfc-dark);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .navbar-brand {
            font-weight: 700;
        }
        .bg-bfc-blue {
            background-color: var(--bfc-blue) !important;
        }
        .text-bfc-gold {
            color: var(--bfc-gold) !important;
        }
        .btn-primary {
            background-color: var(--bfc-blue);
            border-color: var(--bfc-blue);
        }
        .btn-primary:hover {
            background-color: #0044a0;
            border-color: #0044a0;
        }
        .btn-outline-gold {
            color: var(--bfc-gold);
            border-color: var(--bfc-gold);
        }
        .btn-outline-gold:hover {
            background-color: var(--bfc-gold);
            color: var(--bfc-dark);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 40, 110, 0.85), rgba(0, 40, 110, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--bfc-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            border-radius: 10px 10px 0 0;
            height: 220px;
            object-fit: cover;
        }
        .news-card .card-body {
            display: flex;
            flex-direction: column;
        }
        .news-card .card-text {
            flex-grow: 1;
        }
        .player-card {
            text-align: center;
        }
        .player-card img {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--bfc-light);
        }
        .stadium-img {
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
        }
        .footer {
            background-color: #0a1526;
            color: #aaa;
            padding-top: 3rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--bfc-gold);
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            margin-top: 3rem;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #222;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: background 0.3s;
        }
        .social-icons a:hover {
            background: var(--bfc-blue);
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 5px;
            border-radius: 5px;
            border: 1px solid #eee;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            border-color: var(--bfc-blue);
            color: var(--bfc-blue);
            transform: translateY(-3px);
        }
        .nav-link {
            font-weight: 500;
            position: relative;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--bfc-gold);
            left: 50%;
            bottom: 5px;
            transition: all 0.3s;
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: 80%;
            left: 10%;
        }
        .ticket-card {
            background: linear-gradient(135deg, var(--bfc-blue), #003785);
            color: white;
            border-radius: 15px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .match-card {
            border-left: 5px solid var(--bfc-blue);
        }
        .match-card.upcoming {
            border-left-color: var(--bfc-gold);
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 70px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 81, 186, 0.1);
            color: var(--bfc-blue);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--bfc-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
