:root {
            --cb-primary: #9E1B32;
            --cb-secondary: #FFD700;
            --cb-dark: #0A0A0A;
            --cb-light: #F8F9FA;
            --cb-gray: #6C757D;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--cb-primary);
            transition: all 0.3s ease;
        }
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s;
        }
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        .nav-link {
            color: var(--cb-light) !important;
            font-weight: 600;
            padding: 0.5rem 1rem !important;
            margin: 0 0.2rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            background-color: var(--cb-primary);
            color: white !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(158, 27, 50, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-cb {
            background-color: var(--cb-primary);
            border-color: var(--cb-primary);
            color: white;
            padding: 0.8rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary-cb:hover {
            background-color: #7a1528;
            border-color: #7a1528;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 800;
            color: var(--cb-dark);
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--cb-primary);
        }
        .card-custom {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .card-custom img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card-custom:hover img {
            transform: scale(1.05);
        }
        .card-custom .card-body {
            padding: 1.8rem;
        }
        .news-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--cb-secondary);
            color: var(--cb-dark);
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            z-index: 2;
        }
        .player-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        .player-card:hover {
            box-shadow: 0 15px 30px rgba(158, 27, 50, 0.15);
        }
        .player-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--cb-light);
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .fixture-card {
            background: linear-gradient(135deg, var(--cb-dark) 0%, #2a2a2a 100%);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-left: 5px solid var(--cb-primary);
        }
        .club-history-timeline {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--cb-primary);
            margin-left: 1rem;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--cb-primary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--cb-primary);
        }
        .friendlink {
            display: inline-block;
            background-color: var(--cb-light);
            color: var(--cb-dark);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .friendlink:hover {
            background-color: white;
            color: var(--cb-primary);
            border-color: var(--cb-primary);
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--cb-dark);
            color: var(--cb-light);
            padding-top: 3rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.7rem;
        }
        .footer-links a:hover {
            color: var(--cb-secondary);
            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%;
            color: white;
            margin-right: 0.8rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--cb-primary);
            transform: rotate(15deg);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
            .nav-link {
                margin: 0.2rem 0;
            }
        }
