:root {
            --primary-blue: #1a365d;
            --secondary-gold: #d4af37;
            --accent-green: #2e8b57;
            --light-bg: #f8f9fa;
            --dark-text: #333;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1790&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
        }
        .navbar-brand img {
            max-height: 60px;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
        }
        .section-title {
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background-color: var(--secondary-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
            margin-bottom: 20px;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 10px 30px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: var(--secondary-gold);
            border-color: var(--secondary-gold);
            color: var(--primary-blue);
        }
        .btn-outline-primary {
            color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .stats-label {
            font-size: 1.1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: #f1f1f1;
            border-radius: 5px;
            text-decoration: none;
            color: var(--primary-blue);
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .footer-bottom {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            font-size: 0.9rem;
            color: var(--accent-green);
            font-weight: 600;
        }
        .player-card img {
            height: 200px;
            object-fit: cover;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 80px;
            width: auto;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .stats-counter {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
