body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 2px solid #FF9933; }
        .logo { font-size: 28px; font-weight: bold; color: #138808; text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-menu-btn { display: none; background: #FF9933; color: white; border: none; padding: 8px 12px; border-radius: 4px; }
        h1 { color: #138808; margin-top: 30px; }
        h2 { color: #FF9933; margin-top: 25px; }
        h3 { color: #000080; margin-top: 20px; }
        .download-btn, .login-btn { display: inline-block; background: #138808; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin: 15px 0; font-weight: bold; }
        .login-btn { background: #FF9933; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #f8f8f8; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; text-align: center; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #e0e0e0; padding: 5px 10px; border-radius: 20px; margin-right: 8px; margin-bottom: 8px; }
        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu-btn { display: block; }
            .active nav { display: block; }
            header { flex-direction: column; align-items: flex-start; }
        }
