:root {
            --jfc-red: #C1272D;
            --jfc-blue: #0056B3;
            --jfc-steel: #5A6C7D;
            --jfc-gold: #FFD700;
            --jfc-light: #F8F9FA;
            --jfc-dark: #212529;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--jfc-dark);
            overflow-x: hidden;
            padding-top: 76px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--jfc-red) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--jfc-red) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--jfc-red);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            margin-bottom: 30px;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .btn-jfc {
            background-color: var(--jfc-red);
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s;
        }
        .btn-jfc:hover {
            background-color: var(--jfc-blue);
            color: white;
            transform: scale(1.05);
        }
        .bg-jfc-light {
            background-color: var(--jfc-light);
        }
        .bg-jfc-dark {
            background-color: var(--jfc-dark);
            color: white;
        }
        .footer {
            background-color: #111;
            color: #aaa;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--jfc-red);
        }
        .friendlink {
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px 5px 0;
            background-color: #333;
            color: #fff;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        .flink:hover {
            background-color: var(--jfc-red);
            color: white;
            transform: translateY(-3px);
        }
        .player-card {
            border-left: 5px solid var(--jfc-red);
        }
        .stadium-img {
            border-radius: 12px;
            overflow: hidden;
        }
        .news-date {
            color: var(--jfc-steel);
            font-size: 0.9rem;
            font-weight: 600;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s;
            padding: 15px;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(193, 39, 45, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--jfc-red);
            font-size: 1.8rem;
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--jfc-blue);
        }
        .ticket-card {
            border-top: 5px solid var(--jfc-gold);
        }
