:root {
            --primary-color: #0a3d62;
            --secondary-color: #f9ca24;
            --accent-color: #eb2f06;
            --light-color: #f7f7f7;
            --dark-color: #222f3e;
            --success-color: #2ecc71;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--accent-color);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-section .lead {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        .btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #c0392b;
            border-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .stats-box {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .stats-box:hover h3, .stats-box:hover p {
            color: white;
        }
        .stats-box h3 {
            font-size: 2.5rem;
            margin-bottom: 0;
            color: var(--accent-color);
        }
        .player-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .player-card img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .player-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 61, 98, 0.9));
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-overlay {
            transform: translateY(0);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding-top: 4rem;
        }
        footer h5 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }
        .copyright {
            background-color: #1a1a1a;
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .flink {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 3rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--secondary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .contact-info-box {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .contact-info-box:hover h5, .contact-info-box:hover p, .contact-info-box:hover a {
            color: white;
        }
        .contact-info-box i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .contact-info-box:hover i {
            color: var(--secondary-color);
        }
        .news-card {
            border-left: 4px solid var(--accent-color);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem;
            position: relative;
        }
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background-color: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .navbar-nav .nav-link:hover:after {
            transform: scaleX(1);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section .lead {
                font-size: 1.2rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
        }
