:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand img {
            max-height: 50px;
        }
        .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') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: white;
        }
        .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(--secondary-color);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .player-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .player-img {
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .academy-feature {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s;
        }
        .academy-feature:hover {
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        .fixture-card {
            border-left: 5px solid var(--secondary-color);
            background: var(--bg-light);
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 80px;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .friendlink .flink {
            color: var(--primary-color);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
            display: inline-block;
            margin: 5px;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        footer {
            background: #111827;
            color: #d1d5db;
        }
        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: white;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        .stadium-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
            }
            .display-3 {
                font-size: 2.5rem;
            }
        }
