:root {
            --brfc-primary: #1E3A8A;
            --brfc-secondary: #DC2626;
            --brfc-accent: #F59E0B;
            --brfc-dark: #0F172A;
            --brfc-light: #F8FAFC;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--brfc-primary) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--brfc-secondary) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1552676381-3d2f8c3b8a7c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--brfc-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--brfc-secondary);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-brfc {
            background: var(--brfc-primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--brfc-primary);
            transition: all 0.3s ease;
        }
        .btn-brfc:hover {
            background: transparent;
            color: var(--brfc-primary);
            transform: scale(1.05);
        }
        .btn-brfc-secondary {
            background: var(--brfc-secondary);
            border-color: var(--brfc-secondary);
        }
        .btn-brfc-secondary:hover {
            color: var(--brfc-secondary);
        }
        .fixture-card {
            border-left: 5px solid var(--brfc-secondary);
            transition: all 0.3s ease;
        }
        .fixture-card:hover {
            background-color: #FEF2F2;
        }
        .member-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .member-card:hover .member-img {
            transform: scale(1.05);
        }
        .member-img {
            transition: transform 0.5s ease;
            height: 300px;
            object-fit: cover;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            height: 80px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        .footer {
            background: var(--brfc-dark);
            color: #CBD5E1;
        }
        .footer a {
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--brfc-primary);
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--brfc-primary);
        }
        .testimonial-card {
            border-left: 4px solid var(--brfc-accent);
            background: #F8FAFC;
        }
        .contact-info-icon {
            width: 60px;
            height: 60px;
            background: var(--brfc-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
