:root {
            --bbfs-primary: #1e3a8a;
            --bbfs-secondary: #dc2626;
            --bbfs-accent: #fbbf24;
            --bbfs-light: #f8fafc;
            --bbfs-dark: #0f172a;
        }
        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(--bbfs-primary) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(220, 38, 38, 0.8)), 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: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--bbfs-primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--bbfs-secondary);
        }
        .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);
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            background: var(--bbfs-light);
            border-radius: 50px;
            text-decoration: none;
            color: var(--bbfs-dark);
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--bbfs-primary);
            color: white;
            border-color: var(--bbfs-primary);
            transform: scale(1.05);
        }
        .btn-bbfs-primary {
            background: var(--bbfs-primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--bbfs-primary);
            transition: all 0.3s ease;
        }
        .btn-bbfs-primary:hover {
            background: transparent;
            color: var(--bbfs-primary);
        }
        .btn-bbfs-secondary {
            background: var(--bbfs-secondary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--bbfs-secondary);
            transition: all 0.3s ease;
        }
        .btn-bbfs-secondary:hover {
            background: transparent;
            color: var(--bbfs-secondary);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--bbfs-primary), var(--bbfs-secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-box {
            background: var(--bbfs-light);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border-left: 5px solid var(--bbfs-secondary);
        }
        .footer {
            background: var(--bbfs-dark);
            color: #cbd5e1;
            padding-top: 4rem;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--bbfs-secondary);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .player-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .player-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
            color: white;
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-overlay {
            transform: translateY(0);
        }
        .form-control:focus {
            border-color: var(--bbfs-primary);
            box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
        }
