:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e89;
            --accent-color: #ffd166;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: linear-gradient(to right, var(--dark-color), var(--secondary-color));
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, var(--accent-color), #ff9a3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
        }
        .search-form {
            flex: 0 1 400px;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .search-input:focus {
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.25);
        }
        .search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent-color);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background: rgba(0, 0, 0, 0.05);
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .featured-image {
            width: 90%;
            max-width: 900px;
            margin: 0 auto 40px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 5px solid white;
        }
        .featured-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .content-section {
            padding: 0 30px 40px;
        }
        h2, h3, h4 {
            color: var(--secondary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 6px solid var(--primary-color);
            padding-left: 15px;
            position: relative;
        }
        h2::after {
            content: '🎰';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            padding-bottom: 8px;
            border-bottom: 2px dashed var(--accent-color);
        }
        h4 {
            font-size: 1.5rem;
            color: var(--dark-color);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 214, 102, 0.3) 0%, rgba(255, 214, 102, 0.1) 100%);
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 30px 0;
            font-size: 1.15rem;
            box-shadow: var(--shadow);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 600;
        }
        .tip-box {
            background: linear-gradient(to bottom right, #e3f2fd, #f3e5f5);
            border: 2px solid var(--secondary-color);
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 30px 0;
            position: relative;
        }
        .tip-box::before {
            content: '💡 महत्वपूर्ण टिप';
            display: block;
            font-weight: 800;
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .interview {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
            border-left: 8px solid var(--primary-color);
        }
        .player-quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--dark-color);
            margin: 20px 0;
            padding: 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
        }
        .player-quote::before, .player-quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--accent-color);
            position: absolute;
            opacity: 0.5;
        }
        .player-quote::before {
            top: -10px;
            left: 10px;
        }
        .player-quote::after {
            bottom: -30px;
            right: 10px;
        }
        .interactive-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
            color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 50px 30px;
            text-align: center;
        }
        .interactive-section h3 {
            color: white;
            border: none;
        }
        .rating-system {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
        }
        .rating-star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--accent-color);
            transform: scale(1.2);
        }
        .interactive-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .form-group {
            text-align: left;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            border-radius: var(--border-radius);
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .submit-button {
            background: linear-gradient(to right, var(--primary-color), #ff9a3c);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            justify-self: center;
            margin-top: 20px;
        }
        .submit-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
        }
        .footer-links {
            background: var(--dark-color);
            padding: 40px 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 20px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }
        .web-link a {
            color: var(--light-color);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a::before {
            content: '▶';
            color: var(--accent-color);
            font-size: 0.8rem;
        }
        .web-link a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .main-footer {
            background: #111;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
        .footer-links-list li {
            margin-bottom: 12px;
        }
        .footer-links-list a {
            color: #ccc;
            display: block;
            padding: 5px 0;
            transition: var(--transition);
        }
        .footer-links-list a:hover {
            color: var(--accent-color);
            padding-left: 10px;
        }
        .copyright {
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 1024px) {
            .article-header h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 1 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--dark-color);
                padding: 20px;
                transform: translateY(-150%);
                opacity: 0;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 15px 10px;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-section, .article-header {
                padding-left: 20px;
                padding-right: 20px;
            }
            .featured-image img {
                height: 300px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                margin: 50px 20px;
                padding: 30px 20px;
            }
        }
        @media (max-width: 480px) {
            .logo a {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .rating-star {
                font-size: 2rem;
            }
        }
        @media print {
            .main-header, .interactive-section, .footer-links, .main-footer, .breadcrumb {
                display: none;
            }
            main {
                box-shadow: none;
                border-radius: 0;
            }
        }
