:root {
            --hfc-yellow: #FEDD00;
            --hfc-black: #000000;
            --hfc-gray: #2D2D2D;
            --hfc-light-gray: #F8F9FA;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s;
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        .nav-link {
            font-weight: 600;
            margin: 0 8px;
            position: relative;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--hfc-yellow);
            bottom: 0;
            left: 50%;
            transition: all 0.3s;
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
            left: 0;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--hfc-yellow);
            bottom: 0;
            left: 0;
        }
        .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 10px 25px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--hfc-yellow);
            border-color: var(--hfc-yellow);
            color: var(--hfc-black);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #e6c700;
            border-color: #e6c700;
            transform: scale(1.05);
        }
        .stadium-img {
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
        }
        .player-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .player-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .player-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--hfc-yellow);
            margin-bottom: 15px;
        }
        .sponsor-logo {
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--hfc-gray);
            color: white;
            padding: 60px 0 20px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--hfc-yellow);
        }
        .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;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--hfc-yellow);
            color: var(--hfc-black);
            transform: translateY(-3px);
        }
        .flink {
            background: rgba(255,255,255,0.05);
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s;
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--hfc-yellow);
            color: var(--hfc-black);
            transform: translateY(-2px);
        }
        .friendlink {
            background: var(--hfc-light-gray);
            padding: 50px 0;
        }
        .news-date {
            color: #666;
            font-size: 0.9rem;
        }
        .ticket-card {
            background: linear-gradient(135deg, var(--hfc-black) 0%, var(--hfc-gray) 100%);
            color: white;
            border-radius: 15px;
            padding: 30px;
        }
        .match-card {
            border-left: 5px solid var(--hfc-yellow);
            padding-left: 20px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .stadium-img {
                height: 250px;
                margin-bottom: 20px;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 10px;
            }
        }
