:root {
            --vfi-primary: #E63946;
            --vfi-secondary: #1D3557;
            --vfi-accent: #F1FAEE;
            --vfi-light: #A8DADC;
            --vfi-dark: #457B9D;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--vfi-primary) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--vfi-primary) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(29, 53, 87, 0.85), rgba(29, 53, 87, 0.9)), url('https://images.unsplash.com/photo-1592656094267-764a603da8db?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--vfi-secondary);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--vfi-primary);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            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;
        }
        .btn-vfi {
            background-color: var(--vfi-primary);
            color: white;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-vfi:hover {
            background-color: var(--vfi-secondary);
            color: white;
            transform: scale(1.05);
        }
        .news-item {
            border-left: 4px solid var(--vfi-primary);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
            transition: border-color 0.3s ease;
        }
        .news-item:hover {
            border-left-color: var(--vfi-secondary);
        }
        footer {
            background-color: var(--vfi-secondary);
            color: #f1faee;
            padding-top: 3rem;
        }
        footer a {
            color: #A8DADC;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: #A8DADC;
            padding: 8px 18px;
            margin: 5px 10px 5px 0;
            border-radius: 5px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background-color: var(--vfi-primary);
            color: white;
            text-decoration: none;
            border-color: white;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
            max-height: 80px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .player-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .player-card:hover {
            transform: scale(1.03);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--vfi-primary);
            line-height: 1;
        }
        .stats-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(230, 57, 70, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vfi-primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
