:root {
            --hfc-blue: #0066b2;
            --hfc-yellow: #ffd700;
            --hfc-red: #e63946;
            --hfc-dark: #0a1128;
            --hfc-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .hfc-gradient-bg {
            background: linear-gradient(135deg, var(--hfc-blue) 0%, var(--hfc-dark) 100%);
        }
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 17, 40, 0.85), rgba(0, 102, 178, 0.85)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: white;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .player-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .player-card:hover {
            border-color: var(--hfc-yellow);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .player-img {
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .stadium-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1543321269-9d86d3680e1c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .news-card {
            border-left: 4px solid var(--hfc-blue);
            transition: all 0.3s ease;
            height: 100%;
        }
        .news-card:hover {
            border-left-color: var(--hfc-yellow);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .flink {
            color: var(--hfc-blue);
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--hfc-blue);
            color: white;
            transform: translateY(-3px);
        }
        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--hfc-blue);
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .social-icon:hover {
            background: var(--hfc-yellow);
            color: var(--hfc-dark);
            transform: scale(1.1);
        }
        .btn-hfc {
            background: var(--hfc-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-hfc:hover {
            background: var(--hfc-yellow);
            color: var(--hfc-dark);
            transform: translateY(-3px);
        }
        .ticket-counter {
            background: linear-gradient(45deg, var(--hfc-blue), var(--hfc-dark));
            color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,102,178,0.2);
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 80px;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        .academy-badge {
            width: 80px;
            height: 80px;
            background: var(--hfc-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--hfc-dark);
            margin: 0 auto 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .player-img {
                height: 220px;
            }
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
