:root {
            --primary-color: #FF9933;
            --secondary-color: #138808;
            --accent-color: #000080;
            --text-dark: #333333;
            --text-light: #666666;
            --background-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #ffffff;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--accent-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .section-title {
            color: var(--accent-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem 0;
            font-weight: 700;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .highlight-box {
            background-color: var(--background-light);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .key-fact {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            text-align: center;
        }
        .player-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
        }
        footer {
            background-color: var(--accent-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            transition: transform 0.3s ease, color 0.3s ease;
            color: white;
        }
        .social-icon:hover {
            transform: scale(1.2);
            color: var(--primary-color);
        }
        .content-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .content-image:hover {
            transform: scale(1.02);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .trophy-icon {
            color: gold;
            margin-right: 10px;
        }
        .key-player {
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }
        .quote-box {
            background-color: var(--background-light);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
            font-style: italic;
        }
        .quote-box:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.3;
        }
