        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary-color: #7c3aed;
            --secondary-color: #f59e0b;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
            --text-color: #334155;
            --accent-color: #10b981;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        body {
            background-color: #f1f5f9;
            color: var(--text-color);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
        }
        .logo-icon {
            font-size: 2.2rem;
            color: var(--secondary-color);
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, var(--secondary-color), #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: #e5e7eb;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 8px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border-top: 2px solid var(--primary-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb span {
            color: #64748b;
        }
        .breadcrumb i {
            font-size: 0.8rem;
            margin: 0 8px;
        }
        .search-container {
            max-width: 800px;
            margin: 2.5rem auto;
            padding: 0 20px;
        }
        .search-box {
            position: relative;
            background: white;
            border-radius: 50px;
            padding: 5px;
            box-shadow: var(--shadow);
            display: flex;
            overflow: hidden;
            border: 2px solid #e2e8f0;
        }
        .search-box:focus-within {
            border-color: var(--primary-color);
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            padding: 18px 24px;
            font-size: 1.1rem;
            outline: none;
            background: transparent;
        }
        .search-box button {
            background: linear-gradient(to right, var(--primary-color), #8b5cf6);
            color: white;
            border: none;
            padding: 0 32px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 45px;
            white-space: nowrap;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #6d28d9, #7c3aed);
            transform: scale(1.02);
        }
        main {
            padding: 2.5rem 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            color: #64748b;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .meta-item i {
            color: var(--primary-color);
        }
        .intro-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #fefce8 100%);
            border-left: 5px solid var(--secondary-color);
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        .intro-box p {
            font-size: 1.2rem;
            color: var(--dark-color);
            line-height: 1.6;
            margin: 0;
        }
        .highlight {
            background-color: #fff7ed;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.8rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        .highlight strong {
            color: #ea580c;
            font-size: 1.1rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 8px 16px rgba(124, 58, 237, 0.1);
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--dark-color);
        }
        .download-section {
            background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
            color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            text-align: center;
        }
        .download-btn {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--dark-color);
            padding: 1.2rem 2.5rem;
            font-size: 1.3rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
        }
        .download-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        }
        .game-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .warning-box {
            background-color: #fef2f2;
            border-left: 5px solid #ef4444;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .warning-box h4 {
            color: #dc2626;
            margin-bottom: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--primary-color);
        }
        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .popular-post {
            display: flex;
            gap: 1rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #e2e8f0;
            text-decoration: none;
            color: var(--text-color);
            transition: var(--transition);
        }
        .popular-post:hover {
            color: var(--primary-color);
        }
        .popular-post:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .post-number {
            background: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        .post-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        .rating-section, .comments-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }
        .rating-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            margin-bottom: 2rem;
        }
        .average-rating {
            text-align: center;
            min-width: 150px;
        }
        .rating-score {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stars {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .rating-form, .comment-form {
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            margin: 10px 0;
        }
        .star-rating i {
            color: #e2e8f0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover, .star-rating i.active {
            color: var(--secondary-color);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), #8b5cf6);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #6d28d9, #7c3aed);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(124, 58, 237, 0.2);
        }
        .user-comments {
            margin-top: 3rem;
        }
        .comment {
            padding: 1.8rem;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            background: #f8fafc;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--dark-color);
        }
        .comment-date {
            color: #64748b;
            font-size: 0.9rem;
        }
        .footer-links {
            background: var(--dark-color);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1.2rem;
            margin-bottom: 1rem;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: var(--secondary-color);
            transform: translateX(5px);
        }
        .web-link a {
            color: #e5e7eb;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--secondary-color);
        }
        footer {
            background: #111827;
            color: #9ca3af;
            padding: 3rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .social-links a {
            color: #9ca3af;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .article-content, .rating-section, .comments-section {
                padding: 1.8rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .rating-container {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
            .download-section {
                padding: 1.8rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-box input {
                padding: 15px 20px;
            }
            .search-box button {
                padding: 15px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary-color);
        }
        .text-bold {
            font-weight: 700;
        }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        @media print {
            header, .search-container, .sidebar, .rating-section, 
            .comments-section, .footer-links, footer {
                display: none;
            }
            body {
                background: white;
                font-size: 12pt;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
