:root {
            --primary-color: #c62828;
            --secondary-color: #1a237e;
            --accent-color: #ff9800;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #f5f5f5;
            --bg-dark: #263238;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-color);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: var(--bg-dark);
            padding: 2rem;
            transition: var(--transition);
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
            margin-top: 2rem;
        }
        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: var(--accent-color);
        }
        .close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .search-section {
            background-color: #f0f8ff;
            padding: 2rem 0;
            margin: 2rem 0;
            border-radius: 10px;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            padding: 0 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--secondary-color);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.2);
        }
        .search-btn {
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        .content-section {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            font-size: 1.1rem;
        }
        article h2 {
            color: var(--primary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border-color);
            font-size: 1.8rem;
        }
        article h3 {
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: var(--secondary-color);
            font-weight: 700;
        }
        article em {
            color: var(--primary-color);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .tip-list {
            background-color: #e8f5e9;
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
        }
        .tip-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .tip-list li::before {
            content: "💡";
            position: absolute;
            left: 0;
            top: 0;
        }
        aside {
            padding-left: 1.5rem;
            border-left: 3px solid var(--bg-light);
        }
        .sidebar-widget {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            font-size: 1.3rem;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background-color: white;
            margin-bottom: 0.8rem;
            border-radius: 6px;
            text-decoration: none;
            color: var(--text-dark);
            border-left: 4px solid var(--secondary-color);
            transition: var(--transition);
        }
        .quick-links a:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateX(5px);
        }
        .user-interaction {
            margin: 4rem 0;
            padding: 2.5rem;
            background-color: #f9f9f9;
            border-radius: 15px;
            border: 2px solid var(--border-color);
        }
        .rating-section, .comment-section {
            margin-bottom: 3rem;
        }
        .rating-form, .comment-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0 1.5rem;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), #d32f2f);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(198, 40, 40, 0.25);
        }
        .internal-links {
            background: linear-gradient(135deg, var(--bg-light) 0%, #e3f2fd 100%);
            padding: 3rem 0;
            margin: 3rem 0;
        }
        .internal-links h2 {
            text-align: center;
            color: var(--secondary-color);
            margin-bottom: 2.5rem;
            font-size: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }
        .web-link:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .web-link a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.8rem;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        .web-link p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        footer {
            background-color: var(--bg-dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            text-decoration: none;
            display: inline-block;
        }
        .footer-links h4 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            line-height: 2.2;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b0bec5;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                border-left: none;
                border-top: 3px solid var(--bg-light);
                padding-left: 0;
                padding-top: 2rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .header-container {
                padding: 0 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 8px;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .user-interaction {
                padding: 1.5rem;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media print {
            header, .search-section, aside, .user-interaction, .internal-links, footer {
                display: none;
            }
        }
