:root {
            --primary-color: #0a1931;
            --secondary-color: #d4af37;
            --accent-color: #c1121f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
        }
        .navbar-brand span {
            color: var(--light-color);
        }
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            color: var(--light-color) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            left: 50%;
            bottom: 0;
            transition: var(--transition);
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 25, 49, 0.85), rgba(10, 25, 49, 0.9)), 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 6rem;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #a50e1a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(193, 18, 31, 0.3);
        }
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .bg-light-alt {
            background-color: #f8f9fa;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .stats-box:hover {
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: #666;
            margin-top: 0.5rem;
        }
        .footer {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 4rem 0 2rem;
        }
        .footer-links h5 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        .flink:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .friendlink {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 3rem 0;
        }
        .player-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 2rem;
        }
        .player-img {
            height: 350px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .player-info {
            position: absolute;
            bottom: 0;
            background: linear-gradient(transparent, rgba(10, 25, 49, 0.9));
            color: white;
            width: 100%;
            padding: 1.5rem;
        }
        .fixture-badge {
            background: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
            max-height: 80px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .news-card {
            border-left: 4px solid var(--secondary-color);
        }
        .form-control, .form-select {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
