:root {
            --mcfc-blue: #004C97;
            --mcfc-light-blue: #009FE3;
            --mcfc-sky: #6BCAEB;
            --mcfc-white: #FFFFFF;
            --mcfc-gold: #FFD700;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand img {
            height: 50px;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 76, 151, 0.85), rgba(0, 159, 227, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .section-title {
            color: var(--mcfc-blue);
            border-bottom: 3px solid var(--mcfc-gold);
            padding-bottom: 10px;
            margin-bottom: 30px;
            display: inline-block;
        }
        .card {
            border: none;
            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 {
            height: 220px;
            object-fit: cover;
        }
        .player-card .card-img-top {
            height: 300px;
        }
        .btn-mcfc {
            background-color: var(--mcfc-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--mcfc-blue);
        }
        .btn-mcfc:hover {
            background-color: transparent;
            color: var(--mcfc-blue);
            border-color: var(--mcfc-blue);
        }
        .btn-mcfc-outline {
            background-color: transparent;
            color: var(--mcfc-blue);
            border: 2px solid var(--mcfc-blue);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-mcfc-outline:hover {
            background-color: var(--mcfc-blue);
            color: white;
        }
        .footer {
            background-color: #111;
            color: #aaa;
            padding: 60px 0 20px;
        }
        .footer a {
            color: var(--mcfc-sky);
            text-decoration: none;
        }
        .footer a:hover {
            color: var(--mcfc-white);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--mcfc-light-blue);
        }
        .news-card .card-body {
            padding: 1.5rem;
        }
        .stadium-img {
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
        }
        .flink {
            display: inline-block;
            background-color: #f8f9fa;
            color: var(--mcfc-blue);
            padding: 8px 15px;
            margin: 5px 10px 5px 0;
            border-radius: 5px;
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--mcfc-blue);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--mcfc-blue);
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .academy-badge {
            background-color: var(--mcfc-sky);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 15px;
        }
        .nav-link {
            font-weight: 600;
            color: var(--mcfc-blue) !important;
            margin: 0 5px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            border-bottom-color: var(--mcfc-gold);
            color: var(--mcfc-light-blue) !important;
        }
        .ticket-card {
            border: 3px solid var(--mcfc-gold);
            border-radius: 15px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .stadium-img {
                height: 250px;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
