:root {
            --primary-color: #f97316;
            --secondary-color: #1e293b;
            --accent-color: #fbbf24;
            --text-color: #334155;
            --light-bg: #f8fafc;
            --dark-bg: #0f172a;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --container-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 100%;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .header {
            background-color: var(--dark-bg);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary-color);
        }
        .logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 1.1rem;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--primary-color);
            color: white;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            background-color: var(--secondary-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: var(--shadow);
            border-top: 2px solid var(--primary-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .mobile-nav a:hover {
            color: var(--accent-color);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .separator {
            margin: 0 0.5rem;
            color: #94a3b8;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #ea580c);
            padding: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
            color: white;
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
        }
        .search-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1.2rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--dark-bg);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 2.5rem;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
        }
        .search-button:hover {
            background-color: #1a202c;
            transform: scale(1.02);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        .article-content {
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-title {
            color: var(--secondary-color);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid var(--accent-color);
            padding-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            gap: 2rem;
            color: #64748b;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h2, h3 {
            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: 1rem;
        }
        h3 {
            font-size: 1.7rem;
            color: var(--primary-color);
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.15rem;
        }
        .highlight {
            background-color: #fef3c7;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 0.5rem;
        }
        .feature-list {
            list-style: none;
            margin: 2rem 0;
        }
        .feature-list li {
            padding: 1rem;
            background-color: #f1f5f9;
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: var(--transition);
        }
        .feature-list li:hover {
            background-color: #e2e8f0;
            transform: translateX(5px);
        }
        .feature-list i {
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        .game-image {
            margin: 3rem auto;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            margin-top: 0.75rem;
            font-size: 1rem;
        }
        .table-container {
            overflow-x: auto;
            margin: 2.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 1.2rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background-color: #f8fafc;
        }
        tr:hover {
            background-color: #f1f5f9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #cbd5e1;
            margin: 0.5rem 0;
        }
        .star-rating .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-color);
        }
        input, textarea, select {
            padding: 1rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
        }
        button.submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: var(--transition);
        }
        button.submit-btn:hover {
            background-color: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
        }
        .popular-links {
            list-style: none;
        }
        .popular-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #e2e8f0;
        }
        .popular-links a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem;
            border-radius: 8px;
        }
        .popular-links a:hover {
            background-color: #f1f5f9;
            color: var(--primary-color);
            padding-left: 1.5rem;
        }
        .popular-links i {
            color: var(--primary-color);
        }
        .web-links-section {
            margin: 3rem 0;
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .web-links-title {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 1.8rem;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #f1f5f9;
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 600;
            color: var(--secondary-color);
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-bg);
            color: #cbd5e1;
            padding-top: 4rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            display: block;
        }
        .footer-about {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .footer-links h3,
        .footer-social h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .footer-links h3::after,
        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 0.5rem;
        }
        .footer-links i {
            color: var(--primary-color);
            width: 1.2rem;
        }
        .social-icons {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background-color: #334155;
            border-radius: 50%;
            font-size: 1.3rem;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #334155;
            font-size: 1rem;
            color: #94a3b8;
        }
        .copyright a {
            color: var(--accent-color);
            font-weight: 600;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .article-title {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-content,
            .search-section,
            .sidebar-widget,
            .web-links-section {
                padding: 2rem;
            }
            .article-title {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input,
            .search-button {
                border-radius: 50px;
                width: 100%;
            }
            .search-button {
                padding: 1rem;
                justify-content: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-links h3::after,
            .footer-social h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-icons {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .article-title {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .search-title {
                font-size: 1.6rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.75rem;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
