:root {
            --primary-green: #4CAF50;
            --dark-green: #388E3C;
            --light-green: #C8E6C9;
            --earth-brown: #8D6E63;
            --sun-yellow: #FFD54F;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #FAFAFA;
            --white: #FFFFFF;
            --shadow: rgba(0, 0, 0, 0.1);
            --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', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            font-size: 18px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: var(--white);
            text-decoration: none;
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo-icon {
            color: var(--sun-yellow);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-green);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 5px 10px var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--white);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 2rem 1.5rem;
            }
        }
        .article-title {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid var(--sun-yellow);
            padding-left: 1rem;
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            color: var(--text-light);
            margin-bottom: 2.5rem;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .lead-paragraph {
            font-size: 1.4rem;
            color: var(--dark-green);
            background-color: var(--light-green);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            border-left: 4px solid var(--primary-green);
            font-weight: 600;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-green);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--earth-brown);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #FFF8E1;
            border-left: 5px solid var(--sun-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .game-card {
            background: linear-gradient(to bottom right, var(--white), #F1F8E9);
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 4px 8px var(--shadow);
            transition: var(--transition);
            border: 1px solid #E8F5E9;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px var(--shadow);
        }
        .game-card h4 {
            color: var(--dark-green);
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }
        .game-rating {
            color: var(--sun-yellow);
            margin: 0.5rem 0;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px var(--shadow);
            border: 3px solid var(--light-green);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--white);
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-green);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-green);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--dark-green);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
        }
        .star-label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-label:hover,
        .star-label:hover ~ .star-label,
        .star-input:checked ~ .star-label {
            color: var(--sun-yellow);
        }
        .star-input {
            display: none;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .form-submit:hover {
            background-color: var(--dark-green);
        }
        .footer-links {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 0 20px;
        }
        .web-link {
            background-color: var(--white);
            margin-bottom: 1rem;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 6px var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 10px var(--shadow);
        }
        .web-link a {
            color: var(--dark-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-green);
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--dark-green);
            color: var(--white);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--sun-yellow);
        }
        .footer-links-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--sun-yellow);
        }
        .footer-links-section ul {
            list-style: none;
        }
        .footer-links-section li {
            margin-bottom: 0.7rem;
        }
        .footer-links-section a {
            color: var(--light-green);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links-section a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-green);
            font-size: 0.9rem;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--white);
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
        }
        .tag {
            display: inline-block;
            background-color: var(--light-green);
            color: var(--dark-green);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media print {
            .site-header, .sidebar, .site-footer, .search-form, .rating-form, .comment-form {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
