:root {
            --primary: #0A2463;
            --secondary: #FF6B35;
            --accent: #3E92CC;
            --light: #F8F9FA;
            --dark: #212529;
            --success: #28a745;
            --warning: #ffc107;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--secondary) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(255, 107, 53, 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: 180px 0 120px;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        .icon-box {
            background: var(--light);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.4s ease;
            border-left: 5px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .icon-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-left-color: var(--secondary);
        }
        .icon-box i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .stats-counter {
            background: var(--primary);
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: scale(1.05);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
        }
        footer {
            background: var(--dark);
            color: #ddd;
            padding-top: 80px;
        }
        footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 8px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        .flink:hover {
            background: rgba(255,107,53,0.2);
            border-color: var(--secondary);
            transform: translateY(-3px);
        }
        .contact-info i {
            color: var(--secondary);
            width: 30px;
        }
        .form-control {
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            border: 1px solid #ced4da;
        }
        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(62, 146, 204, 0.25);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--primary);
            margin-left: 20px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--secondary);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--primary);
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .section-padding { padding: 60px 0; }
            .stat-number { font-size: 2.5rem; }
        }
        .stadium-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.1);
        }
        .player-overlay {
            position: absolute;
            bottom: 0;
            background: linear-gradient(transparent, rgba(10,36,99,0.9));
            color: white;
            width: 100%;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-overlay {
            transform: translateY(0);
        }
