:root {
            --maroon: #8B1A1A;
            --gold: #FFD700;
            --dark-maroon: #5A0F0F;
            --light-gold: #FFF8DC;
            --neutral-gray: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--dark-maroon);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-maroon {
            background-color: var(--maroon) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gold);
        }
        .text-maroon { color: var(--maroon); }
        .text-gold { color: var(--gold); }
        .bg-maroon { background-color: var(--maroon) !important; }
        .bg-gold { background-color: var(--gold) !important; }
        .bg-light-gold { background-color: var(--light-gold); }
        .btn-maroon {
            background-color: var(--maroon);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-maroon:hover {
            background-color: var(--dark-maroon);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        .btn-outline-maroon {
            background-color: transparent;
            color: var(--maroon);
            border: 2px solid var(--maroon);
            padding: 10px 26px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-maroon:hover {
            background-color: var(--maroon);
            color: white;
            transform: translateY(-3px);
        }
        .card {
            border: none;
            border-radius: 12px;
            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) !important;
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--light-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--maroon);
        }
        .flink {
            display: inline-block;
            background: var(--neutral-gray);
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            color: var(--dark-maroon);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--maroon);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: #1a1a1a;
            color: #aaa;
            padding-top: 50px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--gold);
        }
        .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(--maroon);
            transform: translateY(-5px);
        }
        .player-card {
            border-left: 5px solid var(--gold);
        }
        .timeline-item {
            border-left: 3px solid var(--maroon);
            padding-left: 25px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gold);
            border: 3px solid var(--maroon);
        }
        .stadium-img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0; }
            .display-4 { font-size: 2.2rem; }
            .section-title:after { width: 60px; }
        }
        .marquee {
            background: var(--maroon);
            color: white;
            padding: 10px 0;
            overflow: hidden;
        }
        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
