:root {
            --primary-blue: #0056b3;
            --secondary-gold: #ffc107;
            --dark-bg: #1a1a1a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
            --accent-red: #dc3545;
            --success-green: #198754;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: -0.5px;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 40, 85, 0.85), rgba(0, 40, 85, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hero-section { padding: 5rem 0; min-height: 70vh; }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .bg-dark-custom {
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-custom-primary {
            background-color: var(--primary-blue);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-custom-primary:hover {
            background-color: #004494;
            color: white;
            transform: scale(1.05);
        }
        .btn-custom-outline {
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom-outline:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .player-card {
            border: none;
            overflow: hidden;
            border-radius: 10px;
        }
        .player-card img {
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 80px;
            width: auto;
        }
        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .footer {
            background-color: #111;
            color: #aaa;
            padding-top: 3rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-blue);
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            color: var(--primary-blue);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,86,179,0.2);
        }
        .stadium-img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .academy-badge {
            background: linear-gradient(135deg, var(--primary-blue), #003d82);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .ticker {
            background-color: var(--primary-blue);
            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%); }
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
        }
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 70%;
            height: 2px;
            background-color: var(--secondary-gold);
            transition: transform 0.3s ease;
        }
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            transform: translateX(-50%) scaleX(1);
        }
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(0,86,179,0.25);
        }
        .match-card {
            border-left: 5px solid var(--accent-red);
            border-radius: 8px;
        }
        .victory { border-left-color: var(--success-green); }
        .draw { border-left-color: #6c757d; }
