* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #f9f4ea;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #8b0000, #cd5c5c);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .logo span {
            color: #ffd700;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .intro-section {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            border-top: 5px solid #ffd700;
        }
        .game-title {
            font-size: 2.5rem;
            color: #8b0000;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
        }
        .game-banner {
            width: 100%;
            border-radius: 8px;
            margin: 20px 0;
            height: 300px;
            object-fit: cover;
            border: 5px solid #ffd700;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #228b22;
            color: white;
        }
        .download-btn:hover {
            background-color: #006400;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(34, 139, 34, 0.4);
        }
        .login-btn {
            background-color: #8b4513;
            color: white;
        }
        .login-btn:hover {
            background-color: #6d380c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
        }
        h2 {
            color: #8b0000;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
            font-family: 'Georgia', serif;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ffd700;
            font-size: 2rem;
            line-height: 1;
        }
        h3 {
            color: #8b4513;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b0000;
        }
        .stat-box {
            background-color: #fff8dc;
            border-left: 5px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .game-screenshot {
            width: 100%;
            max-width: 600px;
            border-radius: 8px;
            margin: 25px auto;
            display: block;
            border: 3px solid #ddd;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-screenshot:hover {
            transform: scale(1.02);
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 4px solid #228b22;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #f0e68c;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #8b4513;
            font-size: 1.2rem;
        }
        .stars {
            color: #ffd700;
            margin: 10px 0;
            letter-spacing: 2px;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            position: absolute;
            left: -15px;
            color: #8b0000;
            font-weight: bold;
        }
        .activity-card {
            background-color: #fff0f5;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-top: 3px solid #cd5c5c;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
        }
        .tag {
            display: inline-block;
            background-color: #8b0000;
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: white;
            color: #8b0000;
            border-color: #8b0000;
            transform: scale(1.05);
        }
        .game-type-nav {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-nav a {
            color: #8b0000;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0 5px;
        }
        .game-type-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #8b0000;
            transition: width 0.3s ease;
        }
        .game-type-nav a:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d2d2d;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-bottom: 4px solid #ffd700;
        }
        .feature-card h4 {
            color: #8b0000;
            margin-bottom: 10px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        .feature-card h4:before {
            content: '✓';
            color: #228b22;
            margin-right: 10px;
        }
        .community-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        .gallery-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .faq-section {
            margin: 40px 0;
        }
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            background-color: #f5f5f5;
            padding: 15px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 15px;
            background-color: white;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        .faq-toggle {
            transition: transform 0.3s ease;
        }
        .faq-toggle.active {
            transform: rotate(180deg);
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #8b0000;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            .game-title {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .btn {
                width: 90%;
            }
            .game-banner {
                height: 200px;
            }
            .game-features {
                grid-template-columns: 1fr;
            }
        }
