:root {
            --rw-primary: #0A2463;
            --rw-secondary: #C41E3A;
            --rw-accent: #FFD700;
            --rw-light: #F8F9FA;
            --rw-dark: #212529;
            --rw-gray: #6C757D;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--rw-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-weight: 700;
            color: var(--rw-primary);
        }
        .navbar {
            background-color: rgba(10, 36, 99, 0.95);
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--rw-accent);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--rw-accent) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(196, 30, 58, 0.8)), 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;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 76px;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .section-padding {
            padding: 5rem 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: linear-gradient(to right, var(--rw-primary), var(--rw-secondary));
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-primary {
            background: linear-gradient(to right, var(--rw-primary), #1a3a8f);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: linear-gradient(to right, #1a3a8f, var(--rw-primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(10, 36, 99, 0.3);
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--rw-secondary), #e03a52);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
        }
        .footer {
            background-color: var(--rw-dark);
            color: var(--rw-light);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--rw-accent);
        }
        .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;
        }
        .social-icons a:hover {
            background-color: var(--rw-secondary);
            transform: translateY(-5px);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background-color: #f1f3f5;
            border-radius: 8px;
            color: var(--rw-primary);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--rw-primary);
            color: white;
            border-color: var(--rw-primary);
            transform: translateY(-3px);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--rw-primary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--rw-secondary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--rw-primary);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--rw-primary);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: var(--rw-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .player-card {
            text-align: center;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 2rem 1rem;
            transition: all 0.3s;
        }
        .player-card:hover {
            border-color: var(--rw-primary);
            box-shadow: 0 10px 25px rgba(10, 36, 99, 0.1);
        }
        .player-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #f1f3f5;
            margin-bottom: 1.5rem;
        }
        .sponsor-logo {
            height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .navbar-nav {
                text-align: center;
                background-color: var(--rw-primary);
                border-radius: 10px;
                padding: 1rem;
                margin-top: 1rem;
            }
        }
