:root {
            --primary-blue: #0055A5;
            --primary-orange: #FF671F;
            --secondary-green: #046A38;
            --dark-gray: #333333;
            --light-gray: #F5F5F5;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-orange) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 85, 165, 0.85), rgba(255, 103, 31, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
        }
        .text-center.section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .news-card .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            border-radius: 30px;
        }
        .btn-primary:hover {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }
        .btn-outline-primary {
            color: var(--primary-blue);
            border-color: var(--primary-blue);
            border-radius: 30px;
            font-weight: 600;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .bg-light-custom {
            background-color: var(--light-gray);
        }
        footer {
            background-color: #1a1a1a;
            color: #ddd;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--primary-orange);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
        }
        .social-icons a:hover {
            background: var(--primary-orange);
        }
        .friendlink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px 5px 0;
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .friendlink:hover {
            background: rgba(255,103,31,0.2);
            border-color: var(--primary-orange);
        }
        .fixture-badge {
            background-color: var(--secondary-green);
            color: white;
            font-size: 0.8rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
        }
        .sponsor-img {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 60px;
        }
        .sponsor-img:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
