:root {
            --maratha-orange: #FF6B35;
            --maratha-red: #C44536;
            --maratha-gold: #F9C74F;
            --maratha-navy: #277DA1;
            --maratha-green: #43AA8B;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--maratha-orange), var(--maratha-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .nav-custom.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 0.5rem 0;
        }
        .hero-section {
            background: linear-gradient(rgba(39, 125, 161, 0.8), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1920x1080') center/cover;
            color: white;
            padding: 8rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 3rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--maratha-navy);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--maratha-orange);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            color: var(--maratha-red);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--maratha-gold);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--maratha-gold) 0%, var(--maratha-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .maratha-badge {
            display: inline-block;
            background: var(--maratha-orange);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin: 0.2rem;
        }
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid #e9ecef;
        }
        .toc-item {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #dee2e6;
        }
        .toc-item:last-child {
            border-bottom: none;
        }
        footer {
            background: var(--maratha-navy);
            color: white;
            padding: 3rem 0;
            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(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--maratha-red);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
