* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background-color: #8b0000;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #8b0000;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffd700;
        }
        h2 {
            color: #8b0000;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            color: #b22222;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b0000;
            text-decoration: none;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            margin: 40px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 4px 0 rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #228b22;
            color: white;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            margin-bottom: 12px;
            border: 5px solid white;
        }
        .image-caption {
            color: #666;
            font-size: 0.95rem;
            font-style: italic;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #ffd700;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff4e0;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #8b0000;
            margin-bottom: 5px;
        }
        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }
        .tips-list, .feature-list {
            margin: 25px 0 25px 40px;
        }
        .tips-list li, .feature-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 10px;
        }
        .tag-container {
            margin: 45px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #fff0c8;
            color: #8b4513;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #ffe082;
        }
        .tag:hover {
            background-color: #ffe082;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 35px 0;
            padding: 15px;
            background-color: #fff4e0;
            border-radius: 8px;
        }
        .game-type {
            color: #8b0000;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        .game-type:hover {
            background-color: rgba(139, 0, 0, 0.1);
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 20px 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255,215,0,0.3);
            display: inline-block;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 30px;
            border-top: 1px solid #555;
            font-size: 0.95rem;
            color: #aaa;
        }
        .indian-ornament {
            text-align: center;
            margin: 20px 0;
            color: #ffd700;
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #8b0000;
                padding: 25px;
                gap: 18px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .btn {
                width: 90%;
            }
            .tips-list, .feature-list {
                margin-left: 25px;
            }
            .tag {
                margin: 0 8px 10px 0;
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }
