:root {
            --cfc-blue: #004C97;
            --cfc-gold: #FFD700;
            --cfc-white: #FFFFFF;
            --cfc-dark: #1A1A1A;
            --cfc-light: #F8F9FA;
            --cfc-gray: #6C757D;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--cfc-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--cfc-blue);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--cfc-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 76, 151, 0.9), rgba(0, 76, 151, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            color: var(--cfc-white);
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--cfc-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            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-primary {
            background-color: var(--cfc-blue);
            border-color: var(--cfc-blue);
            padding: 10px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--cfc-gold);
            border-color: var(--cfc-gold);
            color: var(--cfc-dark);
            transform: scale(1.05);
        }
        .btn-outline-primary {
            color: var(--cfc-blue);
            border-color: var(--cfc-blue);
        }
        .btn-outline-primary:hover {
            background-color: var(--cfc-blue);
            border-color: var(--cfc-blue);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--cfc-gold);
            margin-bottom: 20px;
        }
        .stadium-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1543321269-9d86d3680e1c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            color: var(--cfc-white);
        }
        .player-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .player-card:hover .player-overlay {
            opacity: 1;
        }
        .player-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 76, 151, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            color: var(--cfc-white);
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--cfc-blue);
            color: var(--cfc-white);
            border-radius: 50%;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        .social-icon:hover {
            background: var(--cfc-gold);
            color: var(--cfc-dark);
            transform: translateY(-5px);
        }
        .footer {
            background-color: var(--cfc-dark);
            color: var(--cfc-white);
            padding-top: 60px;
        }
        .footer a {
            color: var(--cfc-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--cfc-gold);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin: 5px;
            transition: all 0.3s ease;
            color: var(--cfc-white);
            text-decoration: none;
        }
        .flink:hover {
            background: var(--cfc-gold);
            color: var(--cfc-dark);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--cfc-blue);
            color: var(--cfc-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--cfc-gold);
            color: var(--cfc-dark);
        }
        .match-card {
            border-left: 5px solid var(--cfc-gold);
        }
        .news-date {
            color: var(--cfc-gray);
            font-size: 0.9rem;
        }
        .news-card .card-title {
            transition: color 0.3s ease;
        }
        .news-card:hover .card-title {
            color: var(--cfc-gold);
        }
        .ticket-card {
            border-top: 4px solid var(--cfc-gold);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--cfc-blue);
            line-height: 1;
        }
        .stats-label {
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            color: var(--cfc-gray);
        }
