:root {
            --primary-red: #D22630;
            --primary-dark: #0A0A0A;
            --primary-light: #F8F9FA;
            --secondary-gold: #FFD700;
            --accent-blue: #1E40AF;
            --text-dark: #212529;
            --text-light: #6C757D;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-red) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .nav-link:hover {
            background-color: rgba(210, 38, 48, 0.1);
            color: var(--primary-red) !important;
            transform: translateY(-2px);
        }
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 0.8rem 0;
        }
        .dropdown-item {
            padding: 0.7rem 1.5rem;
            transition: all 0.2s ease;
        }
        .dropdown-item:hover {
            background-color: rgba(210, 38, 48, 0.1);
            padding-left: 2rem;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 700px;
        }
        .btn-hero {
            background-color: var(--primary-red);
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-red);
        }
        .btn-hero:hover {
            background-color: transparent;
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(210, 38, 48, 0.3);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            font-weight: 800;
            color: var(--primary-dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-hover:hover .card-img-top {
            transform: scale(1.05);
        }
        .match-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-red);
        }
        .match-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .player-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        .player-img {
            height: 300px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img {
            transform: scale(1.08);
        }
        .player-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
            color: white;
            padding: 1.5rem;
        }
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding-top: 4rem;
        }
        .footer-links h5 {
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-red);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 1rem 1.8rem;
            margin: 0.5rem;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
        }
        .flink:hover {
            background-color: var(--primary-red);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(210, 38, 48, 0.2);
            border-color: var(--primary-red);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease forwards;
        }
        .news-ticker {
            background-color: var(--primary-red);
            color: white;
            padding: 0.8rem 0;
            overflow: hidden;
        }
        .ticker-content {
            display: inline-block;
            white-space: nowrap;
            animation: ticker 30s linear infinite;
        }
        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .counter-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .counter-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .merch-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 2rem;
        }
        .merch-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-red);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 1rem 0;
        }
        .breadcrumb-item a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
        }
        .breadcrumb-item.active {
            color: var(--text-light);
        }
