:root {
            --maratha-orange: #FF6B35;
            --maratha-blue: #004E89;
            --maratha-gold: #FFD166;
            --maratha-dark: #1A1A2E;
            --maratha-light: #F8F9FA;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, var(--maratha-light) 0%, #ffffff 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--maratha-orange) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--maratha-orange) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--maratha-dark);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: var(--maratha-orange);
            border-bottom: 3px solid var(--maratha-gold);
            padding-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        h2 {
            color: var(--maratha-blue);
            padding-left: 1rem;
            border-left: 4px solid var(--maratha-orange);
        }
        h3 {
            color: var(--maratha-dark);
            margin-top: 2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #555;
            font-weight: 500;
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: all 0.4s ease;
        }
        .img-container:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--maratha-blue) 0%, #0066CC 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,78,137,0.3);
        }
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
            border-top: 4px solid var(--maratha-orange);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        .player-profile {
            background: var(--maratha-light);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--maratha-gold);
        }
        footer {
            background: var(--maratha-dark);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--maratha-orange);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(255,107,53,0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--maratha-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
            margin: 2rem 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--maratha-orange);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--maratha-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--maratha-orange);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--maratha-gold) 0%, var(--maratha-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.2rem;
        }
