* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #FF9933;
            --secondary: #138808;
            --accent: #4B0082;
            --dark: #333;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #ffad5c);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo i {
            color: var(--secondary);
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: var(--secondary);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--primary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .search-box {
            display: flex;
            margin-left: auto;
            margin-right: 2rem;
        }
        .search-box input {
            padding: 0.7rem 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            width: 250px;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0.7rem 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #0a6b07;
        }
        .breadcrumb {
            background: var(--light);
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li a {
            color: var(--gray);
            text-decoration: none;
        }
        .breadcrumb li a:hover {
            color: var(--primary);
        }
        .breadcrumb li:after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb li:last-child:after {
            content: "";
        }
        .breadcrumb li:last-child a {
            color: var(--dark);
            font-weight: 600;
        }
        main {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h1 span {
            color: var(--primary);
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #ffeaa7 0%, #ffeaa7 100%);
            padding: 1.5rem;
            border-left: 5px solid var(--primary);
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
            font-weight: 600;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid var(--primary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 2.5rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .player-interview {
            background: #f0f8ff;
            padding: 2rem;
            border-radius: 15px;
            margin: 2.5rem 0;
            border: 2px dashed var(--secondary);
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .interview-header i {
            font-size: 2.5rem;
            color: var(--primary);
        }
        .tip-box {
            background: #e6f7e6;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 5px solid var(--secondary);
        }
        .tip-box h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.8rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .quick-links a:hover {
            background: var(--light);
            color: var(--primary);
            padding-left: 1.2rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 0.9rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .rating-form input:focus, .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 0.5rem 0;
        }
        .stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i.active, .stars i:hover {
            color: #ffc107;
        }
        .btn {
            background: linear-gradient(to right, var(--primary), #ff7700);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 153, 51, 0.4);
        }
        .btn-secondary {
            background: var(--secondary);
        }
        .btn-secondary:hover {
            box-shadow: 0 7px 15px rgba(19, 136, 8, 0.4);
        }
        .footer-links {
            background: var(--light);
            padding: 3rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 1rem;
            opacity: 0.8;
            max-width: 800px;
            line-height: 1.6;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            sidebar {
                position: static;
                order: 2;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav, .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-box input {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }
